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

commit f34ff0ebef55afdaef6ab4e607914493340b55f7
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jan 29 09:51:47 2026 +0100

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

diff --git a/gnu/packages/storage.scm b/gnu/packages/storage.scm
index c4440a4ec1..27d6a4d9b2 100644
--- a/gnu/packages/storage.scm
+++ b/gnu/packages/storage.scm
@@ -77,6 +77,7 @@
   #:use-module (gnu packages)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system pyproject)
   #:use-module (guix build-system python)
   #:use-module (guix download)
   #:use-module (guix gexp)
@@ -382,11 +383,11 @@ clients.  The key features are:
       #:tests? #f
       #:imported-modules
       (append %default-gnu-imported-modules
-              %python-build-system-modules)
+              %pyproject-build-system-modules)
       #:validate-runpath? #f
       #:modules '((guix build gnu-build-system)
                   (guix build utils)
-                  ((guix build python-build-system) #:prefix python:)
+                  ((guix build pyproject-build-system) #:prefix py:)
                   (ice-9 rdelim)
                   (ice-9 popen))
       #:configure-flags
@@ -453,7 +454,7 @@ clients.  The key features are:
                        `("LD_LIBRARY_PATH" ":" prefix (,(string-append 
#$output "/lib"))))))
                  binaries))))
           (add-after 'patchelf 'python:wrap
-            (assoc-ref python:%standard-phases 'wrap))
+            (assoc-ref py:%standard-phases 'wrap))
           (add-after 'python:wrap 'wrap-python-scripts
             (lambda* (#:key inputs #:allow-other-keys)
               (let* ((scripts '("bin/spdk_cli" "bin/spdk_rpc" ))

Reply via email to