diff options
author | Troy Sankey <sankeytms@gmail.com> | 2017-02-21 14:18:29 -0500 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-10-10 23:09:40 +0200 |
commit | fd8ff99aa7d0a6a3dbc13dd3a1d183fdd52fa452 (patch) | |
tree | 2c9ec706cdd3b5307131b838f8571f80cf4f8b4f /gnu/packages/python.scm | |
parent | 9074bac1391b4db5cf33f3cb9f86f38061e97ae9 (diff) | |
download | guix-fd8ff99aa7d0a6a3dbc13dd3a1d183fdd52fa452.tar guix-fd8ff99aa7d0a6a3dbc13dd3a1d183fdd52fa452.tar.gz |
gnu: Add python-m2r.
* gnu/packages/python.scm (python-m2r, python2-m2r): New variables.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3adab71d12..5b77a25095 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14228,6 +14228,32 @@ Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can parse many formal languages.") (license license:gpl2))) +(define-public python-m2r + (package + (name "python-m2r") + (version "0.1.12") + (source (origin + (method url-fetch) + (uri (pypi-uri "m2r" version)) + (sha256 + (base32 + "1axrwnf425sz4qz3c0qc7yhhki4myzb8rki7pczcsgzznzmqdyxd")))) + (build-system python-build-system) + (propagated-inputs + `(("python-docutils" ,python-docutils) + ("python-mistune" ,python-mistune))) + (native-inputs + `(("python-pygments" ,python-pygments) + ("python-mock" ,python-mock))) + (home-page "https://github.com/miyakogi/m2r") + (synopsis "Markdown to reStructuredText converter") + (description "M2R converts a markdown file including reST markups to valid +reST format.") + (license license:expat))) + +(define-public python2-m2r + (package-with-python2 python-m2r)) + (define-public python-constantly (package (name "python-constantly") |