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

commit df59a4b9e8a70d8c22f9d55c00275d7b50788b8d
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 28 09:52:23 2026 +0100

    gnu: apostrophe: Switch to pyproject.
    
    * gnu/packages/gnome.scm (apostrophe):
    [arguments]<#:imported-modules, #:modules, #:phases>: Switch to
    pyproject-build-system.
    
    Change-Id: Ic1751d52676270c8144bffc60436397f4bada496
    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 1ce81a4d72..80edc695e8 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -13045,10 +13045,10 @@ GTK+.  It integrates well with the GNOME desktop 
environment.")
     (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
@@ -13060,7 +13060,7 @@ GTK+.  It integrates well with the GNOME desktop 
environment.")
             (lambda* (#:key inputs outputs #:allow-other-keys)
               (wrap-program (search-input-file outputs "bin/apostrophe")
                 `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH")
-                                       ,(python:site-packages inputs outputs)))
+                                       ,(py:site-packages inputs outputs)))
                 `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))
                 `("PATH" prefix (,(dirname
                                    (search-input-file inputs

Reply via email to