From 406513d63b01324468fe2164c0c2708aa2661f9e Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 5 Aug 2025 15:45:38 +0100 Subject: [PATCH] gnu: python-sphinxcontrib-devhelp: Update to 2.0.0. * gnu/packages/sphinx.scm (python-sphinxcontrib-devhelp): Update to 2.0.0. [build-system]: Use pyproject. [native-inputs]: Add python-flit-core. Change-Id: Idf02a5c618aede563d170e7d4f8fec8247073456 --- 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 2f6bb0e5e2fdc6e71e5ca4049012b6736944baeb..c89f3d47b5f1850d1678d534c984bd1ca99c2888 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -416,16 +416,18 @@ size responsive web components.") (define-public python-sphinxcontrib-devhelp (package (name "python-sphinxcontrib-devhelp") - (version "1.0.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "sphinxcontrib-devhelp" version)) - (sha256 - (base32 - "1r1qngsbjqbg4rj93kpj44qqy7n4x5khldkr0c3ffhlnggx1lzzz")))) - (build-system python-build-system) + (version "2.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib_devhelp" version)) + (sha256 + (base32 "1bfi9m5hg7p5vgkkqyawvdwyqj22gcvk68fmnlxxgla5sjb5s7s1")))) + (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-devhelp") (synopsis "Sphinx extension for creating Devhelp documents") (description