This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new f2e4c9d4b0 gnu: python-cocotb: Update to 2.0.0b1.
f2e4c9d4b0 is described below
commit f2e4c9d4b078fd35f883209db02a15c5cf9c5225
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Jul 17 16:34:38 2025 +0200
gnu: python-cocotb: Update to 2.0.0b1.
* gnu/packages/electronics.scm (python-cocotb): Update to 2.0.0b1.
[arguments] <:#test-flags>: Update.
<:#phases>: Remove 'check-vhdl.
Change-Id: I3c4faf4eb1c332246b9417ecd30a5c681ae61789
---
gnu/packages/electronics.scm | 23 +++++------------------
1 file changed, 5 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index e48426f5bc..cbeb544bf9 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -566,34 +566,21 @@ for sigrok.")
(define-public python-cocotb
(package
(name "python-cocotb")
- (version "1.9.2")
+ (version "2.0.0b1")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/cocotb/cocotb")
- (commit (string-append "v" version))))
+ (url "https://github.com/cocotb/cocotb")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "19mybnhqa2jz134jj8686310fniav5nldiq0y7kbgml81ppai87c"))))
+ (base32 "14aas4vw9cb9krnvw21vfmwqivvc2cwzi9rvmvap6xcw9f2dsyy9"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
- ;; Tests requiring a verilog simulator.
- #~(list "-k" (string-join
- (list "not parallel_cocotb"
- "cocotb"
- "vhdl_libraries_multiple")
- " and not "))
- #:phases
- #~(modify-phases %standard-phases
- ;; Tests requiring a vhdl simulator.
- (add-after 'check 'check-vhdl
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "SIM" "nvc")
- (invoke "pytest" "-vv" "-k" "vhdl_libraries_multiple")))))))
+ #~(list "-k" "not test_toplevel_library")));requires questasim simulator
(native-inputs
(list iverilog
nvc