aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2023-12-13 22:56:27 +0100
committerRicardo Wurmus <rekado@elephly.net>2024-04-22 11:29:30 +0200
commit118b2f79f8c5575b0ed722accdefd969cc234197 (patch)
tree605b1fcc251f4b074b327724443fa76c30bcba38
parent2528aabf6f1fa5d1fcf9d58afa2a67cf4fd91896 (diff)
downloadguix-118b2f79f8c5575b0ed722accdefd969cc234197.tar
guix-118b2f79f8c5575b0ed722accdefd969cc234197.tar.gz
gnu: python-pytest-xdist: Use pyproject-build-system.
* gnu/packages/check.scm (python-pytest-xdist): Use pyproject-build-system.
-rw-r--r--gnu/packages/check.scm10
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index fc13f544a1..1e7ff1a317 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1741,15 +1741,7 @@ same arguments.")
(sha256
(base32
"1psf5dqxvc38qzxvc305mkg5xpdmdkbkkfiyqlmdnkgh7z5dx025"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv"
- "-n" (number->string (parallel-job-count)))))))))
+ (build-system pyproject-build-system)
(native-inputs (list python-setuptools-scm python-filelock python-pytest))
(propagated-inputs (list python-execnet python-pytest-forked))
(home-page "https://github.com/pytest-dev/pytest-xdist")