~ruther/guix-local

136538c7bfc10d70b1c473cf2ac493fb81db8287 — Aaron Covrig 2 months ago 79b3d9a
gnu: python-pylems: Update to v0.6.9.

* gnu/packages/python-science.scm (python-pylems): Update to v0.6.9.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]: Execute project tests.
[native-inputs]: Add python-pytest and python-setuptools.
[propagated-inputs]: Add python-matplotlib.
[description]: Update with acronym.

Closes guix/guix#5024

Change-Id: Id3e454e5ae6f4ca49fad29cd4e0238aeb75e7653
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
1 files changed, 18 insertions(+), 12 deletions(-)

M gnu/packages/python-science.scm
M gnu/packages/python-science.scm => gnu/packages/python-science.scm +18 -12
@@ 5955,21 5955,27 @@ numerical computation.")
(define-public python-pylems
  (package
    (name "python-pylems")
    (version "0.6.0")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "PyLEMS" version))
              (sha256
               (base32
                "074azbyivjbwi61fs5p8z9n6d8nk8xw6fmln1www13z1dccb3740"))))
    (build-system python-build-system)
    (propagated-inputs (list python-lxml))
    (version "0.6.9")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/LEMS/pylems")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0gimdx89cdla1b6zzkdrmj979nn2zy2475qvpwxxas0iv27ql0vj"))))
    (build-system pyproject-build-system)
    (arguments
     ;; Disable tests that require networking
     (list #:test-flags #~(list "./lems/test" "-k" "not test_load_write_xml")))
    (native-inputs (list python-setuptools python-pytest))
    (propagated-inputs (list python-lxml python-matplotlib))
    (home-page "https://github.com/LEMS/pylems")
    (synopsis
     "Python support for the Low Entropy Model Specification language (LEMS)")
    (description
     "A LEMS simulator written in Python which can be used to run
NeuroML2 models.")
    (description "A @acronym{LEMS, Low Entropy Model Specification} simulator
written in Python which can be used to run NeuroML2 models.")
    (license license:lgpl3)))

(define-public python-pynrrd