~ruther/guix-local

09877fd193d656c47ae91d2c9f38f06a1d043bab — Cayetano Santos 7 months ago 368f83a
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>
1 files changed, 29 insertions(+), 14 deletions(-)

M gnu/packages/fpga.scm
M gnu/packages/fpga.scm => gnu/packages/fpga.scm +29 -14
@@ 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