summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-12-04 22:48:56 +0900
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:34 +0100
commit483cc9b8e4ea21cbd08e77fd1840d17651c4212a (patch)
tree5874dfa06955f75f848e88744fa8c25e0f89bebf /gnu
parent537b853debb9fa64e4b052ff5f55fd50d8e02b6f (diff)
gnu: Add python-sphinxcontrib-video.
* gnu/packages/sphinx.scm (python-sphinxcontrib-video): New variable. Change-Id: Idf7bd4450ee93c3970741bd169cf10525764f176 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/sphinx.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 87689593d63..938206f60b2 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -831,6 +831,32 @@ documents.")
831builder does not support SVG images natively (e.g. LaTeX).") 831builder does not support SVG images natively (e.g. LaTeX).")
832 (license license:bsd-2))) 832 (license license:bsd-2)))
833 833
834(define-public python-sphinxcontrib-video
835 (package
836 (name "python-sphinxcontrib-video")
837 (version "0.4.1")
838 (source
839 (origin
840 (method url-fetch)
841 (uri (pypi-uri "sphinxcontrib_video" version))
842 (sha256
843 (base32 "192wbnljj8wzgv802r5yfz1wd88qm1xhnhq2b7629qbx3gkk783m"))))
844 (build-system pyproject-build-system)
845 ;; There is an error not finding the Pytest 'app' fixture causing all the
846 ;; tests to error (see:
847 ;; <https://github.com/sphinx-contrib/video/issues/62>).
848 (arguments (list #:tests? #f))
849 (propagated-inputs (list python-sphinx))
850 (native-inputs (list python-beautifulsoup4
851 python-defusedxml
852 python-pytest
853 python-setuptools
854 python-wheel))
855 (home-page "https://sphinxcontrib-video.readthedocs.io/")
856 (synopsis "Allows embedding of HTML5 videos in sphinx")
857 (description "Allows embedding of HTML5 videos in sphinx.")
858 (license license:asl2.0)))
859
834(define-public python-sphinxcontrib-websupport 860(define-public python-sphinxcontrib-websupport
835 (package 861 (package
836 (name "python-sphinxcontrib-websupport") 862 (name "python-sphinxcontrib-websupport")