guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 6bad39db36e542db8a1ccf0ed33ccb0442da4d1f Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed Jun 25 19:43:57 2025 +0100
gnu: Add python-sphinxcontrib-jquery. * gnu/packages/sphinx.scm (python-sphinxcontrib-jquery): New variable. Change-Id: I093ef4ba4c59e1f302bc581bea1c34dcd87e5d11 --- gnu/packages/sphinx.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 309855719f..c2e52027ae 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -602,6 +602,26 @@ HTML help files.") math in HTML via JavaScript.") (license license:bsd-2))) +(define-public python-sphinxcontrib-jquery + (package + (name "python-sphinxcontrib-jquery") + (version "4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib-jquery" version)) + (sha256 + (base32 "0ymw7a9nahq7xn69dw8v6l3zvcj9zlnil4qskxvjqsp30jgp680n")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-sphinx)) + (native-inputs (list python-flit-core)) + (home-page "https://github.com/sphinx-contrib/jquery") + (synopsis "Extension to include jQuery on newer Sphinx releases") + (description + "This package provide an extension to include @code{jQuery} on newer +Sphinx releases.") + (license license:bsd-0))) + (define-public python-sphinxcontrib-newsfeed (package (name "python-sphinxcontrib-newsfeed")