diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:54:02 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:19 +0100 |
commit | 8694a383e72ffb5636bca70c1ec0f35304a1e729 (patch) | |
tree | 44afbe283ba10dd8aa61b5e2276bcdaedeccab34 /gnu/packages/python-xyz.scm | |
parent | 0bf677bc880762cf6e55bc18501459e9feb1db66 (diff) |
gnu: python-flake8-isort: Move to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-flake8-isort):
[build-system]: Move to pyproject-build-system.
[arguments]: Remove uneeded field.
Change-Id: Ie8c32f6164030daf28760a58f33aff1d540fc6a5
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0c73551680..0a75026492 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15119,15 +15119,7 @@ TODO notes checker plugin for flake8.") (uri (pypi-uri "flake8-isort" version)) (sha256 (base32 "0gk4q504v42hdzpkndczc0kkwnr85jn1h5pvb561jh65p91r6qyl")))) - (build-system python-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv" "run_tests.py"))))))) + (build-system pyproject-build-system) (propagated-inputs (list python-flake8 python-isort)) (native-inputs (list python-pytest)) (home-page "https://github.com/gforcada/flake8-isort") |