diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:54:25 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:22 +0100 |
commit | 92c3125f845b64acfa881e3b58cb0afebfd07d1e (patch) | |
tree | dcf0dd87679c62e282138d71f49d7a47a33f2f3f | |
parent | 23ab248e528a1cf987702aa0bdf583051b856ca3 (diff) |
gnu: python-cssselect2: Move to pyproject-build-system.
* gnu/packages/python-web.scm (python-cssselect2):
[build-system]: Move to pyproject-build-system.
[arguments]<#:phases>: Remove uneeded 'check phase replacement.
Change-Id: I0bdcf546d24bd738d5c547c36faa91483408d1ab
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/python-web.scm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 822d0284d1..536db9405f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6080,7 +6080,7 @@ in various CSS modules.") (uri (pypi-uri "cssselect2" version)) (sha256 (base32 "1j2fcr217rsvkipsg6zjq03rl64rxnvb5hqqpx0dv58fhspvkywk")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -6091,11 +6091,7 @@ in various CSS modules.") (("'pytest-flake8',") "") (("'pytest-isort',") "") (("--flake8") "") - (("--isort") "")))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (lambda _ (invoke "pytest")))))))) + (("--isort") ""))))))) (propagated-inputs (list python-tinycss2)) (native-inputs |