guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 6702c70a973c7de23e62779889072aa7702cfa91
Author: Sharlatan Hellseher <[email protected]>
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 fd587d5268..5026e7fbcb 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -610,6 +610,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-mermaid
(package
(name "python-sphinxcontrib-mermaid")