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

commit 626daf844e607454fda4aba868b62599d71705d0
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 28 09:39:17 2026 +0100

    gnu: secrets: Switch to pyproject.
    
    * gnu/packages/gnome.scm (secrets):
    [arguments]<#:imported-modules, #:modules, #:phases>: Switch to
    pyproject-build-system.
    
    Change-Id: Ib5a8121dfd101d872fcc47edf30b64dc6e7ec3df
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/gnome.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 64637b709c..fde5b18b91 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11797,10 +11797,10 @@ apply fancy special effects and lets you share the 
fun with others.")
     (arguments
      (list
       #:glib-or-gtk? #t
-      #:imported-modules `(,@%meson-build-system-modules
-                           (guix build python-build-system))
+      #:imported-modules (append %meson-build-system-modules
+                                 %pyproject-build-system-modules)
       #:modules '((guix build meson-build-system)
-                  ((guix build python-build-system) #:prefix python:)
+                  ((guix build pyproject-build-system) #:prefix py:)
                   (guix build utils))
       #:phases
       #~(modify-phases %standard-phases
@@ -11814,7 +11814,7 @@ apply fancy special effects and lets you share the fun 
with others.")
             (lambda* (#:key inputs outputs #:allow-other-keys)
               (wrap-program (search-input-file outputs "bin/secrets")
                 `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH")
-                                       ,(python:site-packages inputs outputs)))
+                                       ,(py:site-packages inputs outputs)))
                 `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))))
     (native-inputs
      (list desktop-file-utils

Reply via email to