aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-05-10 00:53:34 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:18:51 +0000
commit245cb903f163cb6ca3b577fcc9cbd76d2959c60b (patch)
treeca072366b034633567a832800840f1db5a1b568c
parent6ac41542e947c9e905677667ddece78186ce9a31 (diff)
downloadguix-245cb903f163cb6ca3b577fcc9cbd76d2959c60b.tar.gz
guix-245cb903f163cb6ca3b577fcc9cbd76d2959c60b.zip
gnu: python-cucumber-tag-expressions: Move to pyproject-build-system.
* gnu/packages/python-check.scm (python-cucumber-tag-expressions): [build-system]: Move to pyproject-build-system. [arguments]: Remove uneeded field. Change-Id: Ibf0d92aa761f7a00f8c2c806a8bbd38669987ad7 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/python-check.scm11
1 files changed, 1 insertions, 10 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 04e0fafe66..33225a0136 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -307,16 +307,7 @@ are useful when writing automated tests in Python.")
(uri (pypi-uri "cucumber-tag-expressions" version))
(sha256
(base32 "0q7rn4l4ppjd1zsglr37ccc5xccg4iigaw827282zfzfsvzda573"))))
- (build-system python-build-system)
- (arguments
- (list #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; Ignore the configuration file since we don't
- ;; need HTML reports, etc.
- (invoke "pytest" "-c" "/dev/null" "-vv")))))))
+ (build-system pyproject-build-system)
(native-inputs
(list python-invoke python-pathpy python-pytest))
(home-page "https://github.com/cucumber/tag-expressions-python")