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

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

    gnu: python-shtab: Move to pyproject-build-system.
    
    * gnu/packages/python-xyz.scm (python-shtab):
      [build-system]: Move to pyproject-build-system.
      [arguments]: Remove uneeded field.
    
    Change-Id: Ie27661677e88c5743423946d13bbe07a2c51bf36
    Signed-off-by: Nicolas Goaziou <m...@nicolasgoaziou.fr>
---
 gnu/packages/python-xyz.scm | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index aa34ce0730..7bf2d58883 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -35602,7 +35602,7 @@ adapted from the @code{packaging} package.")
         (uri (pypi-uri "shtab" version))
         (sha256
           (base32 "127mymfm7r0hddk2vknqq34fj6dirj6ip990i3g4isx0lsd7pnsc"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (native-inputs
       (list bash
             python-pytest
@@ -35610,15 +35610,6 @@ adapted from the @code{packaging} package.")
             python-pytest-timeout
             python-setuptools-scm
             python-wheel))
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace
-             'check
-           (lambda* (#:key tests? inputs outputs #:allow-other-keys)
-             (when tests?
-               (add-installed-pythonpath inputs outputs)
-               (invoke "pytest")))))))
     (home-page "https://github.com/iterative/shtab";)
     (synopsis "Automagic shell tab completion for Python CLI applications")
     (description

Reply via email to