ngz pushed a commit to branch python-team
in repository guix.

commit 1743aa9e6358ca1ba43098d44f6ffff216a278d9
Author: Nicolas Graves <ngra...@ngraves.fr>
AuthorDate: Fri May 10 00:54:02 2024 +0200

    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 <m...@nicolasgoaziou.fr>
---
 gnu/packages/python-xyz.scm | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7bf2d58883..14da454df1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14866,15 +14866,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";)

Reply via email to