guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 83d80cf27f0b9b4139816cfc2b05183b8c4ac500
Author: Cayetano Santos <[email protected]>
AuthorDate: Mon Oct 20 20:09:32 2025 +0200
gnu: Add python-pyucis.
* gnu/packages/electronics.scm (python-pyucis): New variable.
Change-Id: I8020d77bd48ffcf1bd21eee8ea55f174fe4fa68c
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/electronics.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 56cae54c14..a2c9e3cf09 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -1518,6 +1518,35 @@ verification.")
#~(modify-phases #$phases
(delete 'fix-scripts)))))))
+(define-public python-pyucis
+ (package
+ (name "python-pyucis")
+ (version "0.1.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fvutils/pyucis/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19bxmhqkdmhbibkbzcjqvzvcni1kzg28nqz9vh6zj73hl26lf2ij"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-jsonschema-objects
+ python-lxml
+ python-pyyaml))
+ (home-page "https://fvutils.github.io/pyucis//")
+ (synopsis "Python interface to UCIS data")
+ (description
+ "The code{PyUCIS} library provides two APIs for creating and accessing
+coverage data via the @acronym{UCIS, Unified Coverage Interoperability
+Standard} data mode.")
+ (license license:asl2.0)))
+
(define-public python-cocotb
(package
(name "python-cocotb")