From 53c98321ab30f47dbd14f32339320d15af3164c2 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 5 Aug 2025 15:30:00 +0100 Subject: [PATCH] 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 f4cd025a1f96141a06332f218a1fad3cc42bb63d..bfb05ea4f66d32926b1bf518f08a839cd5ba97e7 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