sharlatan pushed a commit to branch python-team
in repository guix.
commit 3039ec767fbc3f1c73bfdee0f7c08664015356d2
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri May 10 00:53:33 2024 +0200
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 <[email protected]>
---
gnu/packages/check.scm | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index fd290178bb..83b9c4f29b 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3400,13 +3400,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))