guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e2a8e3b7bb792ce2b9532167194a07ec11f92aaf
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 28 10:13:14 2026 +0100
gnu: xwayland-run: Switch to pyproject.
* gnu/packages/xorg.scm (xwayland-run):
[arguments]<#:imported-modules, #:modules, #:phases>: Switch to
pyproject-build-system.
Change-Id: I410b5b57fd4357e85047ceb905665dd715c20442
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/xorg.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 0cfa552b27..a08ef34525 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -7153,21 +7153,20 @@ the server and cleaning up before returning the exit
status of the command.")
(list
#:imported-modules
(append %meson-build-system-modules
- %python-build-system-modules)
+ %pyproject-build-system-modules)
#:modules
'((guix build utils)
(guix build meson-build-system)
- ((guix build python-build-system) #:prefix python:))
+ ((guix build pyproject-build-system) #:prefix py:))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'enable-bytecode-determinism
- (assoc-ref python:%standard-phases 'enable-bytecode-determinism))
+ (assoc-ref py:%standard-phases 'enable-bytecode-determinism))
(add-after 'install 'python-install
(lambda args
(for-each
(lambda (phase)
- (apply (assoc-ref python:%standard-phases phase)
- args))
+ (apply (assoc-ref py:%standard-phases phase) args))
'(add-install-to-pythonpath
add-install-to-path
wrap))))