diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:36 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:17 +0100 |
commit | 6c93f02ad3b3f7d5584e9e27048f092fb5437891 (patch) | |
tree | 6d3cff3c518af22bc39d8563eefb50778d4b83f0 | |
parent | 80d5d3af28d2a9d02168c84e477855d48f9f510a (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.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 142c09991b..5c43e34991 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4968,14 +4968,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") |