From 5f80f32e74734208e99faf875adb5b6a6bf7c5d6 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 5 Aug 2025 15:48:41 +0100 Subject: [PATCH] gnu: python-sphinxcontrib-applehelp: Update to 2.0.0. * gnu/packages/sphinx.scm (python-sphinxcontrib-applehelp): Update to 2.0.0. [build-system]: Use pyproject. [native-inputs]: Add python-flit-core. Change-Id: I657c0bacf26eccbca75035fad57f68c5876d661c --- 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 c89f3d47b5f1850d1678d534c984bd1ca99c2888..118a189965b3a3ff477605b02c0517d59bff1714 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -298,16 +298,18 @@ sources.") (define-public python-sphinxcontrib-applehelp (package (name "python-sphinxcontrib-applehelp") - (version "1.0.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "sphinxcontrib-applehelp" version)) - (sha256 - (base32 - "0n5wrn4l7x6gxvi1g7c6y72hkxgc223axz1jykipaxhfr1g76wm0")))) - (build-system python-build-system) + (version "2.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib_applehelp" version)) + (sha256 + (base32 "1l863hp1pikrn04082f6jh49fha910zqfd27za79bkim2wryya9g")))) + (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-applehelp") (synopsis "Sphinx extension for creating Apple help books") (description