summaryrefslogtreecommitdiff
path: root/gnu/packages/sphinx.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-03-12 18:31:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:14:25 +0100
commitfe6a8ab28f6163ea83bc053fd8ccc35a0d3069ea (patch)
treee4b174985c1ff00098d7b155d897ce3d7d8d4c54 /gnu/packages/sphinx.scm
parent3a53839b8ea05125b354734f9e380431ae14d55a (diff)
gnu: python-sphinxcontrib-jquery: Update to 4.1-0.80d1d39.
* gnu/packages/sphinx.scm (python-sphinxcontrib-jquery): Update to 80d1d3925c17c1860283323972680690f81d7b18 commit. [source]: Switch to git-fetch. [native-inputs]: Add python-pytest. Merges: https://codeberg.org/guix/guix/pulls/7112 Change-Id: I9a68700797e9b4650e01e504bc2d5abbdca8435d Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/sphinx.scm')
-rw-r--r--gnu/packages/sphinx.scm18
1 files changed, 13 insertions, 5 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index c17749f90ad..1c4b069b6c3 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -630,16 +630,24 @@ math in HTML via JavaScript.")
630(define-public python-sphinxcontrib-jquery 630(define-public python-sphinxcontrib-jquery
631 (package 631 (package
632 (name "python-sphinxcontrib-jquery") 632 (name "python-sphinxcontrib-jquery")
633 (version "4.1") 633 ;; Tests of 4.1 (released in 2024) fail with sphinx 9.
634 (properties '((commit . "80d1d3925c17c1860283323972680690f81d7b18")
635 (revision . "0")))
636 (version (git-version "4.1"
637 (assoc-ref properties 'revision)
638 (assoc-ref properties 'commit)))
634 (source 639 (source
635 (origin 640 (origin
636 (method url-fetch) 641 (method git-fetch)
637 (uri (pypi-uri "sphinxcontrib-jquery" version)) 642 (uri (git-reference
643 (url "https://github.com/sphinx-contrib/jquery")
644 (commit (assoc-ref properties 'commit))))
645 (file-name (git-file-name name version))
638 (sha256 646 (sha256
639 (base32 "0ymw7a9nahq7xn69dw8v6l3zvcj9zlnil4qskxvjqsp30jgp680n")))) 647 (base32 "0la7qasz5xlyzpx20ldcc62vkwg4xk2dd39j27dqz7zv1m8mjg0c"))))
640 (build-system pyproject-build-system) 648 (build-system pyproject-build-system)
641 (propagated-inputs (list python-sphinx)) 649 (propagated-inputs (list python-sphinx))
642 (native-inputs (list python-flit-core)) 650 (native-inputs (list python-flit-core python-pytest))
643 (home-page "https://github.com/sphinx-contrib/jquery") 651 (home-page "https://github.com/sphinx-contrib/jquery")
644 (synopsis "Extension to include jQuery on newer Sphinx releases") 652 (synopsis "Extension to include jQuery on newer Sphinx releases")
645 (description 653 (description