summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-05-10 00:53:36 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2024-05-23 22:47:17 +0200
commite04817a833689fa6d8d048cc58c398556f86d120 (patch)
treebd50896c3e0efda504e4fa0859c710c4ec3c8f35
parentfbea2074460d6a8caeefd5107935d565b51fa1e2 (diff)
gnu: python-parse-type: Move to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-parse-type): [build-system]: Move to pyproject-build-system. [arguments]: Remove uneeded field. Change-Id: Iccb3303996480bef3c151559884d1a8c488385cd Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 89f193e446..5bec3d4a90 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4768,14 +4768,7 @@ matplotlib plots or supply colors for a web application.")
(sha256
(base32
"07smqnzc9km7sbvxfyx4gdm9njrx58x8grdw6gs4gva81rk3rd10"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv" "-c" "/dev/null")))))))
+ (build-system pyproject-build-system)
(propagated-inputs (list python-six python-parse))
(native-inputs (list python-pytest))
(home-page "https://github.com/jenisys/parse_type")