guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2a117da5b5826e27a1fde50800e1db9112b873fa
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Aug 5 15:30:00 2025 +0100
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
---
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 f4cd025a1f..bfb05ea4f6 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