mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add python-pymdown-extensions.
* gnu/packages/python-xyz.scm (python-pymdown-extensions): New variable.
This commit is contained in:
parent
ad8ee53cb1
commit
5b8e9eec08
1 changed files with 23 additions and 0 deletions
|
@ -326,6 +326,29 @@ (define-public python-mkdocs
|
|||
configured with a single YAML configuration file.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-pymdown-extensions
|
||||
(package
|
||||
(name "python-pymdown-extensions")
|
||||
(version "8.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(pypi-uri "pymdown-extensions" version))
|
||||
(sha256
|
||||
(base32 "0d8pdndrl1kj105lq7r6kw2dnhcvll6h2qs07w71mcpi7gx728v3"))))
|
||||
(build-system python-build-system)
|
||||
;; FIXME: "AssertionError: False is not true"
|
||||
(arguments
|
||||
`(#:tests? #f))
|
||||
(propagated-inputs
|
||||
`(("python-markdown" ,python-markdown)))
|
||||
(home-page "https://github.com/facelessuser/pymdown-extensions")
|
||||
(synopsis "Extension pack for Python Markdown")
|
||||
(description "PyMdown Extensions is a collection of extensions for Python
|
||||
Markdown. All extensions are found under the module namespace of pymdownx.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-slixmpp
|
||||
(package
|
||||
(name "python-slixmpp")
|
||||
|
|
Loading…
Reference in a new issue