mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-myst-parser.
* gnu/packages/sphinx.scm (python-myst-parser): New variable.
This commit is contained in:
parent
f583b14ce8
commit
788901567d
1 changed files with 48 additions and 0 deletions
|
@ -735,6 +735,54 @@ (define-public python-mpl-sphinx-theme
|
||||||
(description "This package provides a Matplotlib theme for Sphinx.")
|
(description "This package provides a Matplotlib theme for Sphinx.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-myst-parser
|
||||||
|
(package
|
||||||
|
(name "python-myst-parser")
|
||||||
|
(version "0.18.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/executablebooks/MyST-Parser")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0lcz9vvy8hbp6cjmbslrlxn3pinf98jykiq8nx5lw5y0lz0mj162"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
;; There are 3 test failures, seemingly due to expecting a slightly
|
||||||
|
;; different output from Sphinx (see:
|
||||||
|
;; https://github.com/executablebooks/MyST-Parser/issues/645).
|
||||||
|
(list #:test-flags #~(list "-k" (string-append
|
||||||
|
"not test_basic "
|
||||||
|
"and not test_gettext_html "
|
||||||
|
"and not test_fieldlist_extension"))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-beautifulsoup4
|
||||||
|
python-docutils
|
||||||
|
python-flit-core
|
||||||
|
python-pytest
|
||||||
|
python-pytest-param-files
|
||||||
|
python-pytest-regressions
|
||||||
|
python-sphinx
|
||||||
|
python-sphinx-pytest))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-docutils
|
||||||
|
python-jinja2
|
||||||
|
python-linkify-it-py
|
||||||
|
python-markdown-it-py
|
||||||
|
python-linkify-it-py
|
||||||
|
python-mdit-py-plugins
|
||||||
|
python-pyyaml
|
||||||
|
python-sphinx
|
||||||
|
python-typing-extensions))
|
||||||
|
(home-page "https://myst-parser.readthedocs.io/en/latest/")
|
||||||
|
(synopsis "Sphinx and Docutils extension to parse MyST")
|
||||||
|
(description "This package provides a Sphinx and Docutils extension to parse
|
||||||
|
MyST, a rich and extensible flavour of Markdown for authoring technical and
|
||||||
|
scientific documentation.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-sphinx-rtd-theme
|
(define-public python-sphinx-rtd-theme
|
||||||
(package
|
(package
|
||||||
(name "python-sphinx-rtd-theme")
|
(name "python-sphinx-rtd-theme")
|
||||||
|
|
Loading…
Reference in a new issue