summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-05 15:30:00 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:53 +0100
commit53c98321ab30f47dbd14f32339320d15af3164c2 (patch)
treeb3d4f255f20846ae8a7bca35fc9567fb51c090cd /gnu
parentf229f007ef7631434785b252f26fe19264f35bb3 (diff)
gnu: python-sphinxcontrib-qthelp: Update to 2.0.0.
* gnu/packages/sphinx.scm (python-sphinxcontrib-qthelp): Update to 2.0.0. [build-system]: Use pyproject. [native-inputs]: Add python-flit-core. Change-Id: I1d2308e65024ca776b53238db63b4dadb261f4de
Diffstat (limited to 'gnu')
-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 f4cd025a1f9..bfb05ea4f66 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -703,16 +703,18 @@ commands into documents, helping you to keep your command examples up to date.")
(define-public python-sphinxcontrib-qthelp
(package
(name "python-sphinxcontrib-qthelp")
- (version "1.0.3")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "sphinxcontrib-qthelp" version))
- (sha256
- (base32
- "0wjsp96d262shzkx7pb7pra7mmf0j8c5rz56i6x0vdsqw1z7ccsc"))))
- (build-system python-build-system)
+ (version "2.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "sphinxcontrib_qthelp" version))
+ (sha256
+ (base32 "1axvp4bcw3p4n8xiby9i4xlgh4znm3ia7ar3wrdh8wf1iynd1rsg"))))
+ (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-qthelp")
(synopsis "Sphinx extension to output QtHelp documents")
(description