guix_mirror_bot pushed a commit to branch master
in repository guix.

commit be609b69074a28b072e25d2a2af3f1661902846c
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Nov 22 11:31:35 2025 +0100

    gnu: python-pyrss2gen: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-pyrss2gen):
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:tests?>: Disable them.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: Ic0dcc5c5333612e14bd8173ba09c8bd607b5accf
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7d8137b616..f5f11dd6c1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34105,7 +34105,9 @@ EXIF data to JPEG, WebP and TIFF files.")
         (uri (pypi-uri "PyRSS2Gen" version))
         (sha256
           (base32 "1rvf5jw9hknqz02rp1vg8abgb1lpa0bc65l7ylmlillqx7bswq3r"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ; No tests.
+    (native-inputs (list python-setuptools))
     (home-page "http://dalkescientific.com/Python/PyRSS2Gen.html";)
     (synopsis "Generate RSS 2.0 feeds using a Python data structure")
     (description "PyRSS2Gen is the interface to generate RSS 2.0 feeds.

Reply via email to