summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-05-10 00:53:33 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-10-14 23:53:16 +0100
commitc11d255ddaeeb5f48be15a88083471064a75c0ee (patch)
tree32882c87adfe6db8fbf80cb92636d557a2c9484a
parent4939d0dcf2ee126bf6fd70faa49d47014a4c5e47 (diff)
gnu: behave: Move to pyproject-build-system.
* gnu/packages/check.scm (behave): [build-system]: Move to pyproject-build-system. [arguments]: Remove uneeded field. Change-Id: I9ea513fb49b71d9187461ef55c2a6ecab2844a1d Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/check.scm8
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 15716f5e6c..b85a7cd8c3 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3307,13 +3307,7 @@ backported from Python 2.7 for Python 2.4+.")
(sha256
(base32
"0sv94wagi214h0l91zn8m04f78x5wn83vqxib81hnl1qahvx9hq7"))))
- (build-system python-build-system)
- (arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-c" "/dev/null" "-vv")))))))
+ (build-system pyproject-build-system)
(native-inputs
(list python-mock python-nose python-pathpy python-pyhamcrest
python-pytest))