gnu: python-myhdl: Update to 0.11-0.7dc29c2.

* gnu/packages/fpga.scm (python-myhdl): Update to 0.11-0.7dc29c2.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]: Replace check #:phase.
[native-inputs]: Add iverilog, python-setuptools-next, and
python-pytest.

Change-Id: I43d6da67bea5f5cc020881f33f399a62d2706e59
Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
This commit is contained in:
Cayetano Santos 2025-09-08 11:08:54 +02:00 committed by Maxim Cournoyer
parent 368f83a08a
commit 09877fd193
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -614,22 +614,37 @@ Python program.")
(license license:bsd-2))))
(define-public python-myhdl
(package
(name "python-myhdl")
(version "0.11.51")
(source
(origin
(method url-fetch)
(uri (pypi-uri "myhdl" version))
(sha256
(let ((commit "7dc29c242cd33cb835c336a81ffc3a461eaa92f4")
(revision "0"))
(package
(name "python-myhdl")
(version (git-version "0.11" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/myhdl/myhdl/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0b360smk2m60vhxdi837hz75m0pnms477wkn9gh6m4v3nih1v4cx"))))
(build-system python-build-system)
(home-page "http://www.myhdl.org/")
(synopsis "Python as a Hardware Description Language")
(description "This package provides a library to turn Python into
"1b91yvr0ksrw3bx61i7914caf8pyks9c242kwmj4l12zjd06mp56"))))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "make" "iverilog" "core")))))))
(build-system pyproject-build-system)
(native-inputs
(list iverilog python-setuptools-next python-pytest))
(home-page "http://www.myhdl.org/")
(synopsis "Python as a Hardware Description Language")
(description "This package provides a library to turn Python into
a hardware description and verification language.")
(license license:lgpl2.1+)))
(license license:lgpl2.1+))))
(define-public python-vunit
(package