mbakke pushed a commit to branch master
in repository guix.

commit 73b765d64bcc81e42da0843536580d9bcedd275e
Author: Marius Bakke <[email protected]>
AuthorDate: Sat Jan 7 16:53:57 2023 +0100

    gnu: python-whatever: Use pyproject-build-system.
    
    * gnu/packages/python-xyz.scm (python-whatever)[build-system]: Change to
    PYPROJECT-BUILD-SYSTEM.
    [arguments]: Remove.
---
 gnu/packages/python-xyz.scm | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 014e7632d9..856b554114 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22106,13 +22106,7 @@ files, and Makefiles.")
        (file-name (git-file-name name version))
        (sha256
         (base32 "1q7ajgqjfivxqsqgnhp4lc4p6jxyh4zprcsdbpd6dw54inaf0av5"))))
-    (build-system python-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-        (replace 'check
-          (lambda _
-            (invoke "py.test"))))))
+    (build-system pyproject-build-system)
     (native-inputs
      (list python-pytest))
     (home-page "https://github.com/Suor/whatever";)

Reply via email to