diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:54:18 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:21 +0100 |
commit | 1ff2ab822f182988f6e90ace7a2f0318a54c23ef (patch) | |
tree | 80f317515216447347d8cc3a746c46a7217776fa | |
parent | 8f0acaa29d87818001a3936ac00faffd12ff57fd (diff) |
gnu: python-numpydoc: Move to pyproject-build-sytem.
* gnu/packages/python-xyz.scm (python-numpydoc):
[build-system]: Move to pyproject-build-sytem.
[arguments]: Move <#:phases> check replacement to
<#:test-flags>.
Change-Id: Ia7a812c4ee2adcd31fc32db1caa7c163cadf46bf
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 176fc7a9b6..5695ab6a0d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9372,16 +9372,12 @@ parse and apply unified diffs. It has features such as: (sha256 (base32 "0k2z3g4s3w39h1nd293542hl9qv55j29gcr3bkia0rr3ldsppnxh")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-v" "numpydoc/tests" - ;; TODO: unclear why these fail. - "-k" "not test_MyClass and not test_my_function"))))))) + (list #:test-flags + '(list "numpydoc/tests" + ;; TODO: unclear why these fail. + "-k" "not test_MyClass and not test_my_function"))) (propagated-inputs (list python-jinja2 python-sphinx)) (native-inputs (list python-matplotlib python-pytest python-pytest-cov)) (home-page "https://pypi.org/project/numpydoc/") |