guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c5f5d0881c2ea9ecfebc1e03a7e70ef5cc228860
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 28 09:08:18 2026 +0100
gnu: blueprint-compiler: Switch to pyproject.
* gnu/packages/gnome.scm (blueprint-compiler):
[arguments]<#:imported-modules, #:modules, #:phases>: Switch to
pyproject-build-system.
Change-Id: I604b70490e8f3b0df988e852e83f8d70b6da2057
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 b46763af66..8cc48ab858 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3297,11 +3297,11 @@ the GNOME desktop environment.")
(arguments
(list
#:imported-modules
- `(,@%meson-build-system-modules
- (guix build python-build-system))
+ (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
@@ -3310,7 +3310,7 @@ the GNOME desktop environment.")
(system "Xvfb :1 &")
(setenv "DISPLAY" ":1")))
(add-after 'install 'wrap-python
- (assoc-ref python:%standard-phases 'wrap))
+ (assoc-ref py:%standard-phases 'wrap))
(add-after 'wrap-python 'gi-wrap
(lambda _
(let ((prog (string-append #$output "/bin/blueprint-compiler")))