diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-09-08 11:08:54 +0200 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-09 17:27:13 +0900 |
| commit | 09877fd193d656c47ae91d2c9f38f06a1d043bab (patch) | |
| tree | dfa925c0ae569770ffd1d84b16006ceb87003774 | |
| parent | 368f83a08addbf41b52ff6b881d7113b04850d09 (diff) | |
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>
| -rw-r--r-- | gnu/packages/fpga.scm | 43 |
1 files changed, 29 insertions, 14 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index dcfccc602d7..430b93a278c 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -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 |
