From cbce80e99fe1b26573a85d51c6b1febe25bca969 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Thu, 23 Oct 2025 12:19:09 +0200 Subject: [PATCH] gnu: Add python-pyvcd. * gnu/packages/electronics.scm (python-pyvcd): New variable. Change-Id: Id01ee8ceba3df4ed2730fd8bfedf35a4fc2a3172 --- gnu/packages/electronics.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index 22af0a9407b..f5946cb4a6a 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -1736,6 +1736,28 @@ coverage data via the @acronym{UCIS, Unified Coverage Interoperability Standard} data mode.") (license license:asl2.0))) +(define-public python-pyvcd + (package + (name "python-pyvcd") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyvcd" version)) + (sha256 + (base32 "15nnydvr1a4ykh8cagi484sfgvdg0dnjxaw6c0ivhjbrbblpaqnw")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest-cov + python-setuptools + python-setuptools-scm)) + (home-page "http://pyvcd.readthedocs.io/") + (synopsis "Library to manipulate digital wave files") + (description + "The code{PyVcd} Python library writes @acronym{VCD, Value Change Dump} +files as specified in IEEE 1364-2005.") + (license license:expat))) + (define-public python-cocotb (package (name "python-cocotb")