summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-25 19:44:01 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:53 +0100
commitec2375d2dc739d448d91583bb08c4466e79a262d (patch)
treef92d9fdc7db70fc15c87327c308894347f50219c
parent254fdd04b9af0678a579eda8561955919a1cb22f (diff)
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
-rw-r--r--gnu/packages/sphinx.scm18
1 files 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