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

commit a0ea91cccb4f113cb2163d7643cc37f5ecb9656c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Sep 5 12:37:38 2025 +0100

    gnu: python-libxml2: Switch to pyproject.
    
    * gnu/packages/xml.scm (python-libxml2)[build-system]: Switch to
    pypojrect-build-system.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: I4a8ac976b9bdb508f4c1efa4b29407a96615aeb2
---
 gnu/packages/xml.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 3a9aa07c2a..fbce65dba0 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -292,7 +292,7 @@ to output XPath results with a null delimiter.")))
               (patches
                 (append (search-patches "python-libxml2-utf8.patch")
                         (origin-patches (package-source libxml2))))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (outputs '("out"))
     (arguments
      (list
@@ -310,6 +310,7 @@ to output XPath results with a null delimiter.")))
                   ;; provide the absolute directory name.
                   (("/opt/include")
                    (dirname libxml2-headers)))))))))
+    (native-inputs (list python-setuptools))
     (inputs (list libxml2))
     (synopsis "Python bindings for the libxml2 library")))
 

Reply via email to