guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7933665af138840e1efd325b66849330583c6866
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 18 18:28:45 2025 +0200

    gnu: python-stopit: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-stopit):
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: I7557d16fb3e6a314553e8bac06fbd6a5f3ab82f7
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e3748fc717..fd8e13fe20 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17069,8 +17069,9 @@ stdin/stdout/stderr.")
        (uri (pypi-uri "stopit" version))
        (sha256
         (base32 "0vcrcvky249q4rbgmwf18mwmnypfk8jpn4h6knyjf86r7xc9rwzp"))))
-    (build-system python-build-system)
-    (arguments '(#:tests? #f)) ;there are none
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ;there are none
+    (native-inputs (list python-setuptools))
     (home-page "https://pypi.python.org/pypi/stopit";)
     (synopsis "Timeout control decorator and context managers")
     (description

Reply via email to