diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:55 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:19 +0100 |
commit | 34713c656e39c7de03ffdcf5d10d7de7ad15b380 (patch) | |
tree | 9abf37262c06b60f5d8171a14a1a293420cd9f24 | |
parent | d4655f371a6513d0f05b7fd8f5a39613095173b6 (diff) |
gnu: python-sparse: Move to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-sparse):
[build-system]: Move to pyproject-build-system.
[arguments]: Remove unneeded field.
Change-Id: If3f785ede09ef79384b66166ad2f1c2a5f6e7c84
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/python-xyz.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1200897e62..28e614f801 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8977,14 +8977,7 @@ objects.") (sha256 (base32 "1600xad37mff46xg80cy6bi3l2n6jm69j7sl19rzdmkcgyijfn2z")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "python" "-m" "pytest" "-v"))))))) + (build-system pyproject-build-system) (propagated-inputs (list python-numba python-numpy python-scipy)) (native-inputs |