me
/
guix
Archived
1
0
Fork 0

gnu: python-markdown: Update to 3.2.

* gnu/packages/python-xyz.scm (python-markdown): Update to 3.2.
[properties]: New field.
(python2-markdown): Stay on 3.1.1.
master
Marius Bakke 2020-02-12 17:47:10 +01:00
parent 8ae17933e2
commit 2537ce68b0
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 14 additions and 3 deletions

View File

@ -6731,14 +6731,14 @@ Python.")
(define-public python-markdown
(package
(name "python-markdown")
(version "3.1.1")
(version "3.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Markdown" version))
(sha256
(base32
"0yhylk4ffqqs7x086fav4pnfsl1021v7lghznzkififprmmqfl1f"))))
"1gwqrhrp0n9xllgmjc8n1p260968kr0dd2jncjkj4r617q61imss"))))
(build-system python-build-system)
(native-inputs
`(("python-nose" ,python-nose)
@ -6750,10 +6750,21 @@ Python.")
Markdown. The library features international input, various Markdown
extensions, and several HTML output formats. A command line wrapper
markdown_py is also provided to convert Markdown files to HTML.")
(properties `((python2-variant . ,(delay python2-markdown))))
(license license:bsd-3)))
;; Markdown 3.2 dropped support for Python 2.
(define-public python2-markdown
(package-with-python2 python-markdown))
(let ((base (package-with-python2 (strip-python2-variant python-markdown))))
(package/inherit
base
(version "3.1.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "Markdown" version))
(sha256
(base32
"0yhylk4ffqqs7x086fav4pnfsl1021v7lghznzkififprmmqfl1f")))))))
(define-public python-ptyprocess
(package