diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:33 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:51 +0000 |
commit | 6ac41542e947c9e905677667ddece78186ce9a31 (patch) | |
tree | e61da9523267da2cee5f6a34920cb16f8f37e86b | |
parent | 4705ee467d8974fcf71e46b52722e90a39cb91e6 (diff) | |
download | guix-6ac41542e947c9e905677667ddece78186ce9a31.tar.gz guix-6ac41542e947c9e905677667ddece78186ce9a31.zip |
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.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 8e866c34c6..0af8e22635 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)) |