guix_mirror_bot pushed a commit to branch master
in repository guix.

commit bd934ceb85be9d2263719f17e4d958e96e6bf148
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Dec 23 15:58:57 2025 +0100

    gnu: python-genshi: Update to 0.7.10.
    
    * gnu/packages/python-web.scm (python-genshi): Update to 0.7.10.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:test-flags>: Set them.
    [native-inputs]: Replace python-setuptools-67 by python-setuptools.
    
    Change-Id: I2669c4e462151ab6edeb9e73b0d8af1319dfd72c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d6c1608f0f..ae40d9fd77 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8334,7 +8334,7 @@ for Flask programs that are using @code{python-alembic}.")
 (define-public python-genshi
   (package
     (name "python-genshi")
-    (version "0.7.7")
+    (version "0.7.10")
     (source
      (origin
        (method git-fetch)
@@ -8343,11 +8343,11 @@ for Flask programs that are using 
@code{python-alembic}.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "06q14mn5n56rdnqvsbbjixygilblgg85fzw029n96qf6f1rvldiq"))))
-    (native-inputs (list python-setuptools-67))
-    (propagated-inputs
-     (list python-six))
-    (build-system python-build-system)
+        (base32 "1dmf0ggp0s3371jv483kjriw9jscawxcik6q70a0wqjdfh5383i6"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:test-backend #~'unittest))
+    (native-inputs (list python-setuptools))
+    (propagated-inputs (list python-six))
     (home-page "https://genshi.edgewall.org/";)
     (synopsis "Toolkit for generation of output for the web")
     (description "Genshi is a Python library that provides an integrated set

Reply via email to