gnu: Add python-mike.

* gnu/packages/python-xyz.scm (python-mike): New variable.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Vincent Prat 2022-04-22 10:15:59 +02:00 committed by Mathieu Othacehe
parent 090b3823b8
commit de61e49085
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -29534,3 +29534,26 @@ (define-public python-sre-yield
uses the parsed regular expression, so you get a much more accurate result
than trying to just split strings.")
(license license:asl2.0)))
(define-public python-mike
(package
(name "python-mike")
(version "1.1.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "mike" version))
(sha256
(base32
"0yxp816x7s948xsd0fifvq9shg01xdxlifd9rzf5y2rd9iwz3hsn"))))
(build-system python-build-system)
(native-inputs
(list python-coverage python-flake8 python-shtab))
(propagated-inputs
(list python-jinja2 python-mkdocs python-pyyaml python-verspec))
(home-page "https://github.com/jimporter/mike")
(synopsis "Manage multiple versions of MkDocs-powered documentation")
(description
"This package provides a Python utility to easily deploy multiple
versions of MkDocs-powered docs to a Git branch. It is suitable for deploying
to Github via gh-pages.")
(license license:bsd-3)))