guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 5c09f310f54fcaaf0937d1d1e6991c7174db2355 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed Jun 25 19:44:01 2025 +0100
gnu: python-sphinx-rtd-theme: Update to 3.0.2. * gnu/packages/sphinx.scm (python-sphinx-rtd-theme): Update to 3.0.2. [propagated-inputs]: Add python-sphinxcontrib-jquery. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: I7e77e96757537d017f5facecd562e712d81eef3f --- gnu/packages/sphinx.scm | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index c2e52027ae..733d79cb8e 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -1150,25 +1150,22 @@ scientific documentation.") (define-public python-sphinx-rtd-theme (package (name "python-sphinx-rtd-theme") - (version "1.0.0") + (version "3.0.2") (source (origin (method url-fetch) (uri (pypi-uri "sphinx_rtd_theme" version)) (sha256 - (base32 - "0p3abj91c3l72ajj5jwblscsdf1jflrnn0djx2h5y6f2wjbx9ipf")))) - (build-system python-build-system) - (arguments - (list - #:tests? #f ; No tests. - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'allow-newer-docutil - (lambda _ - (substitute* "setup.py" - (("docutils<0.18") "docutils<0.20"))))))) - (propagated-inputs (list python-docutils python-sphinx)) + (base32 "11azdqbkxcibxgl3x852c2mrx19wjnwp19l6n0h3nwnsbp17nidp")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-docutils + python-sphinx + python-sphinxcontrib-jquery)) (home-page "https://github.com/snide/sphinx_rtd_theme/") (synopsis "ReadTheDocs.org theme for Sphinx") (description "A theme for Sphinx used by ReadTheDocs.org.")