guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 9234b1fa02fadf5b937cfc5dc4cce4aa7a9f57df
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jul 22 09:42:11 2025 +0200

    gnu: python-xmldiff: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-xmldiff):
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools, python-wheel.
    
    Change-Id: I956fbb44c53dc889992ff3db6cf9691f28021c20
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d99fec8332..d4dafe13a7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1134,7 +1134,8 @@ for translation.")
        (uri (pypi-uri "xmldiff" version))
        (sha256
         (base32 "18k8kiml9wpl4wf9lmi0j6ys21lbdv8fa8r9qrzdsrh3h0ghp4f0"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools python-wheel))
     (propagated-inputs (list python-lxml))
     (home-page "https://github.com/Shoobx/xmldiff";)
     (synopsis "Creates diffs of XML files")

Reply via email to