diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-11-01 13:20:36 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-04 11:26:34 +0100 |
commit | 8ee62c97f659c6b288c76efe621969b9535a3542 (patch) | |
tree | 7dd157ad76364658d0147731bad72c70f7e26f18 | |
parent | 5ff6effcc08fdd2cf1d668fd7bd849a05a649eaa (diff) | |
download | guix-8ee62c97f659c6b288c76efe621969b9535a3542.tar guix-8ee62c97f659c6b288c76efe621969b9535a3542.tar.gz |
gnu: Add python-html5lib-0.9.
* gnu/packages/python.scm (python-html5lib-0.9, python2-html5lib-0.9):
New variables.
-rw-r--r-- | gnu/packages/python.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 25c52467fc..5234dba2d2 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -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") |