guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c009bfcd38d8435abfee586c0a0b3c499c05bfd2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 25 19:44:01 2025 +0100
gnu: python-sphinxcontrib-serializinghtml: Update to 2.0.0.
* gnu/packages/sphinx.scm (python-sphinxcontrib-serializinghtml): Update to
2.0.0.
[build-system]: Use pyproject.
[native-inputs]: Add python-flit-core.
Change-Id: I181900fdbb66441ee939a9d025a45937958f3bbd
---
gnu/packages/sphinx.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 6d7875e844..f4cd025a1f 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -723,16 +723,18 @@ documents.")
(define-public python-sphinxcontrib-serializinghtml
(package
(name "python-sphinxcontrib-serializinghtml")
- (version "1.1.5")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "sphinxcontrib-serializinghtml" version))
- (sha256
- (base32
- "0lk91cl9bi4ynhz971zjs0bsr7jwxx8mx2f40psrx06zvzjnspxa"))))
- (build-system python-build-system)
+ (version "2.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "sphinxcontrib_serializinghtml" version))
+ (sha256
+ (base32 "0k8x0dq8p3kskwi8fg6jgwzpqchb33r0wgx52y804b47gy115ng9"))))
+ (build-system pyproject-build-system)
(arguments
`(#:tests? #f)) ;XXX: circular dependency on Sphinx
+ (native-inputs
+ (list python-flit-core))
(home-page "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml")
(synopsis "Sphinx extension to serialize HTML files")
(description