mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-scikit-fem: Update to 10.0.2.
* gnu/packages/python-science.scm (python-scikit-fem): Update to 10.0.2. Improve style. [arguments]<test-flags>: Skip some failing tests. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I4efe9f0e93d315c7b979bf3160fa5a3a97ab2115
This commit is contained in:
parent
c73e334b93
commit
1228b3134f
1 changed files with 24 additions and 12 deletions
|
@ -441,23 +441,35 @@ CMake.")
|
||||||
(define-public python-scikit-fem
|
(define-public python-scikit-fem
|
||||||
(package
|
(package
|
||||||
(name "python-scikit-fem")
|
(name "python-scikit-fem")
|
||||||
(version "9.0.1")
|
(version "10.0.2")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch) ; no tests in PyPI
|
(method git-fetch) ; no tests in PyPI
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/kinnala/scikit-fem")
|
(url "https://github.com/kinnala/scikit-fem")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "10kvzm4fmazsrddd83m0903wan67fkj13vdp6w1iw6wm6a0b5h28"))))
|
||||||
"1r1c88rbaa7vjfnljbzx8paf36yzpy33bragl99ykn6i2srmjrd4"))))
|
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs (list python-meshio python-numpy python-scipy))
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-flags #~(list
|
||||||
|
;; Tests require Jax.
|
||||||
|
"--ignore=tests/test_autodiff.py"
|
||||||
|
"--ignore=tests/test_examples.py")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-autograd
|
(list python-autograd
|
||||||
python-pyamg
|
python-pyamg
|
||||||
|
;; python-jax ; not packed yet
|
||||||
python-pytest
|
python-pytest
|
||||||
python-shapely))
|
python-shapely
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-meshio
|
||||||
|
python-numpy
|
||||||
|
python-scipy))
|
||||||
(home-page "https://scikit-fem.readthedocs.io/en/latest/")
|
(home-page "https://scikit-fem.readthedocs.io/en/latest/")
|
||||||
(synopsis "Library for performing finite element assembly")
|
(synopsis "Library for performing finite element assembly")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue