guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit d70bba7b46cef4c568cc781b95319fda536129bd
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Dec 25 11:31:41 2025 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b4edcaa3f6..6eeef45f1b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15363,10 +15363,10 @@ implementation of D-Bus.")
        (sha256
         (base32
          "0z8rrv9rsg1r2qgh2dxj3dfj5xnki98kgi3w839kqby4a26i1yik"))))
-    (build-system python-build-system)
-    (arguments `(#:tests? #f))                    ; tests depend on system 
state
-    (propagated-inputs
-     (list python-dbus))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ; tests depend on system state
+    (native-inputs (list python-setuptools))
+    (propagated-inputs (list python-dbus))
     (home-page "https://bitbucket.org/takluyver/pynotify2";)
     (synopsis "Python interface to D-Bus notifications")
     (description

Reply via email to