guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e2438542676a700bcad167eb5be11e94c7360e0b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Oct 25 11:47:04 2025 +0100

    gnu: python-svgutils: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-svgutils)[build-system]: Switch to
    pyproject-build-system.
    [arguments] <tests?>: No tests in PyPI archive.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: Ic84b861d21605e1ecb2917552f439784585594e9
---
 gnu/packages/python-xyz.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 394dd451ef..050e89da95 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30927,9 +30927,12 @@ that may need or want to use SVG files as geometric 
data.")
        (method url-fetch)
        (uri (pypi-uri "svgutils" version))
        (sha256
-        (base32
-         "0lz0w2ajdvwd269a7ppnzawmx8px0116j0nx8xvhlihxrd28zx4y"))))
-    (build-system python-build-system)
+        (base32 "0lz0w2ajdvwd269a7ppnzawmx8px0116j0nx8xvhlihxrd28zx4y"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))         ;no test in PyPI archive, depend on Nose
+    (native-inputs
+     (list python-setuptools))
     (propagated-inputs
      (list python-lxml))
     (home-page "https://svgutils.readthedocs.io";)

Reply via email to