gnu: Add python-html5lib-0.9.

* gnu/packages/python.scm (python-html5lib-0.9, python2-html5lib-0.9):
New variables.
This commit is contained in:
Ricardo Wurmus 2016-11-01 13:20:36 +01:00 committed by Ricardo Wurmus
parent 5ff6effcc0
commit 8ee62c97f6
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 16 additions and 0 deletions

View File

@ -4788,6 +4788,22 @@ and written in Python.")
(define-public python2-html5lib
(package-with-python2 python-html5lib))
;; Needed for python-bleach, a dependency of python-notebook
(define-public python-html5lib-0.9
(package
(inherit python-html5lib)
(version "0.999")
(source
(origin
(method url-fetch)
(uri (pypi-uri "html5lib" version))
(sha256
(base32
"17n4zfsj6ynmbwdwviywmj8r6nzr3xvfx2zs0xhndmvm51z7z263"))))))
(define-public python2-html5lib-0.9
(package-with-python2 python-html5lib-0.9))
(define-public python-urwid
(package
(name "python-urwid")