gnu: Add python-sphinx-prompt.

* gnu/packages/sphinx.scm (python-sphinx-prompt): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Vinicius Monego 2021-11-15 04:35:40 +00:00 committed by Ludovic Courtès
parent 7c2d84df1c
commit dc5ace95d3
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -502,6 +502,37 @@ (define-public python-sphinx-repoze-autointerface
(define-public python2-sphinx-repoze-autointerface
(package-with-python2 python-sphinx-repoze-autointerface))
(define-public python-sphinx-prompt
(package
(name "python-sphinx-prompt")
(version "1.5.0")
(source
(origin
(method git-fetch) ; no source release in PyPI
(uri (git-reference
(url "https://github.com/sbrunner/sphinx-prompt")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0x9wmgf04rzivbzp7jv1b7fkhkpi02lpk5w1qf4i7bcgih00ym8a"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(invoke "python" "-m" "pytest")))))))
(native-inputs
`(("python-pytest" ,python-pytest)
("python-sphinx" ,python-sphinx)))
(home-page "https://github.com/sbrunner/sphinx-prompt")
(synopsis "Sphinx directive to add unselectable prompt")
(description
"This package provides a Sphinx directive to add unselectable prompt.")
(license license:bsd-3)))
(define-public python-sphinx-alabaster-theme
(package
(name "python-sphinx-alabaster-theme")