guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

139/361: gnu: python-isort: Move to pyproject-build-system.


From: guix-commits
Subject: 139/361: gnu: python-isort: Move to pyproject-build-system.
Date: Fri, 22 Nov 2024 06:00:28 -0500 (EST)

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

commit ab4b1b2c3ef5b2976a233c30ebcbba3c27121fc9
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Fri May 10 00:52:59 2024 +0200

    gnu: python-isort: Move to pyproject-build-system.
    
    * gnu/packages/python-xyz.scm (python-isort):
      [build-system]: Move to pyproject-build-system.
      [arguments]<#:test-flags>: Add option to replace former check phase.
      <#:phases>: Remove phases build, install and check.
    
    Change-Id: Idac8f151977f2494eb44d51aa1fcbf3156b5cc87
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/python-xyz.scm | 22 ++++------------------
 1 file changed, 4 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c078330bc1..1d54dd48bc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24986,19 +24986,13 @@ package attempts to address the shortcomings of 
@code{isodate}.")
        (sha256
         (base32
          "1vbwc4gpffclf6hw08lvvgqlvsgfjlw7gjsm28jfcrln2pixla7j"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments
      (list
+      #:test-flags '(list "tests/unit/" "-k" "not test_gitignore"
+                          "--ignore=tests/unit/test_deprecated_finders.py")
       #:phases
       #~(modify-phases %standard-phases
-          (replace 'build
-            (lambda _
-              (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
-          (replace 'install
-            (lambda _
-              (let ((whl (car (find-files "dist" "\\.whl$"))))
-                (invoke "pip" "--no-cache-dir" "--no-input"
-                        "install" "--no-deps" "--prefix" #$output whl))))
           (add-after 'install 'install-example-plugins
             (lambda _
               (for-each (lambda (source-directory)
@@ -25012,15 +25006,7 @@ package attempts to address the shortcomings of 
@code{isodate}.")
               (setenv "HOME" (getcwd))
               (let ((example-whls (find-files "dist" "^example.*\\.whl$")))
                 (apply invoke "pip" "--no-cache-dir" "--no-input"
-                       "install"  "--user" "--no-deps" example-whls))))
-          (replace 'check
-            (lambda* (#:key tests? inputs outputs #:allow-other-keys)
-              (when tests?
-                (let ((bin (string-append #$output "/bin")))
-                  (setenv "PATH" (string-append (getenv "PATH") ":" bin)))
-                (invoke "pytest" "-vv" "tests/unit/"
-                        "-k" "not test_gitignore" ;requires git
-                        "--ignore=tests/unit/test_deprecated_finders.py")))))))
+                       "install"  "--user" "--no-deps" example-whls)))))))
     (native-inputs
      (list python-black
            python-colorama



reply via email to

[Prev in Thread] Current Thread [Next in Thread]