summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-02-23 10:26:40 +0100
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:13 +0200
commitd97df2b206f52fa101ead131cace7fa085b3651b (patch)
treed24320d3e7cde01760efceaa01bfd23b162b80c4 /gnu/packages/python-science.scm
parente3cfbd0c1517f416652f18f36886e992a8aa077a (diff)
gnu: python-opt-einsum: Use pyproject-build-system.
* gnu/packages/python-science.scm (python-opt-einsum)[build-system]: Use pyproject-build-system. [arguments]: Remove. [native-inputs]: Remove python-pytest-pep8; add python-setuptools and python-wheel. Change-Id: I6da632c3c7e02ec13ab61124ce2984aa2675d996
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm12
1 files changed, 3 insertions, 9 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 0cdf23dfa8..b51a4a0a9b 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -4074,16 +4074,10 @@ numerical computation.")
(sha256
(base32
"0jb5lia0q742d1713jk33vlj41y61sf52j6pgk7pvhxvfxglgxjr"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
+ (build-system pyproject-build-system)
(propagated-inputs (list python-numpy))
- (native-inputs (list python-pytest python-pytest-cov python-pytest-pep8))
+ (native-inputs
+ (list python-pytest python-pytest-cov python-setuptools python-wheel))
(home-page "https://github.com/dgasmith/opt_einsum")
(synopsis "Optimizing numpys einsum function")
(description