~ruther/guix-local

b9e74d092df2948dd94f6f550a3d8dd0dea7ad45 — Sharlatan Hellseher 2 years ago 5f93aa1
gnu: python-scikit-fem: Update to 9.0.1.

* gnu/packages/python-science.scm (python-scikit-fem): Update to 9.0.1.
[arguments]<#:test-flags>: Drop it to activate all tests.
[native-inputs]: Add python-autograd, python-pyamg, and python-shapely.

Change-Id: Ic4706196026bd5756b4db8230b15efacdca7d463
1 files changed, 7 insertions(+), 6 deletions(-)

M gnu/packages/python-science.scm
M gnu/packages/python-science.scm => gnu/packages/python-science.scm +7 -6
@@ 213,7 213,7 @@ genetic variation data.")
(define-public python-scikit-fem
  (package
    (name "python-scikit-fem")
    (version "8.1.0")
    (version "9.0.1")
    (source (origin
              (method git-fetch)        ; no tests in PyPI
              (uri (git-reference


@@ 222,13 222,14 @@ genetic variation data.")
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1zpn0wpsvls5nkrav5a43z77yg9nc09dpyy9ri0dpmpm2ndh2mhs"))))
                "1r1c88rbaa7vjfnljbzx8paf36yzpy33bragl99ykn6i2srmjrd4"))))
    (build-system pyproject-build-system)
    (arguments
     ;; Examples below require python-autograd and python-pyamg.
     (list #:test-flags #~(list "-k" "not TestEx32 and not TestEx45")))
    (propagated-inputs (list python-meshio python-numpy python-scipy))
    (native-inputs (list python-pytest))
    (native-inputs
     (list python-autograd
           python-pyamg
           python-pytest
           python-shapely))
    (home-page "https://scikit-fem.readthedocs.io/en/latest/")
    (synopsis "Library for performing finite element assembly")
    (description