mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-numexpr: Update to 2.9.0.
* gnu/packages/python-xyz.scm (python-numexpr): Update to 2.9.0. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: I352536175d71e29c55c9ad71a96dbfd2b9b66759
This commit is contained in:
parent
4ace0faf47
commit
3627d497c3
1 changed files with 14 additions and 5 deletions
|
@ -9984,16 +9984,25 @@ parse and apply unified diffs. It has features such as:
|
||||||
(define-public python-numexpr
|
(define-public python-numexpr
|
||||||
(package
|
(package
|
||||||
(name "python-numexpr")
|
(name "python-numexpr")
|
||||||
(version "2.8.4")
|
(version "2.9.0") ; starting from 2.10.0, NumPy 2+ is required
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "numexpr" version))
|
(uri (pypi-uri "numexpr" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1w5ampdamlwj8ix1ipzxngmrlqpnmcmk95gbi6839kijqkv147gj"))))
|
||||||
"0iv1h1lvry5vmzqyvwxfbckyhzm1vbb1bmhmj4dnj64d84vjahym"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
(arguments
|
||||||
(arguments `(#:tests? #f)) ; no tests included
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'build-extensions
|
||||||
|
(lambda _
|
||||||
|
(invoke "python" "setup.py" "build_ext" "--inplace"))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-numpy))
|
(list python-numpy))
|
||||||
(home-page "https://github.com/pydata/numexpr")
|
(home-page "https://github.com/pydata/numexpr")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue