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>
This commit is contained in:
Maxim Cournoyer 2025-12-04 22:48:56 +09:00 committed by Andreas Enge
parent 4a01ad3e29
commit c0636d389f
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -809,6 +809,32 @@ documents.")
builder does not support SVG images natively (e.g. LaTeX).")
(license license:bsd-2)))
(define-public python-sphinxcontrib-video
(package
(name "python-sphinxcontrib-video")
(version "0.4.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sphinxcontrib_video" version))
(sha256
(base32 "192wbnljj8wzgv802r5yfz1wd88qm1xhnhq2b7629qbx3gkk783m"))))
(build-system pyproject-build-system)
;; There is an error not finding the Pytest 'app' fixture causing all the
;; tests to error (see:
;; <https://github.com/sphinx-contrib/video/issues/62>).
(arguments (list #:tests? #f))
(propagated-inputs (list python-sphinx))
(native-inputs (list python-beautifulsoup4
python-defusedxml
python-pytest
python-setuptools
python-wheel))
(home-page "https://sphinxcontrib-video.readthedocs.io/")
(synopsis "Allows embedding of HTML5 videos in sphinx")
(description "Allows embedding of HTML5 videos in sphinx.")
(license license:asl2.0)))
(define-public python-sphinxcontrib-websupport
(package
(name "python-sphinxcontrib-websupport")