mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
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:
parent
dea02fe71e
commit
549f7a38ed
1 changed files with 26 additions and 0 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue