From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: Re: [PATCH 06/16] gnu: Add python-html5lib-0.9. Date: Tue, 01 Nov 2016 14:40:50 +0100 Message-ID: <87bmxzmi71.fsf@gnu.org> References: <20161101122046.751-1-ricardo.wurmus@mdc-berlin.de> <20161101122046.751-7-ricardo.wurmus@mdc-berlin.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1ZHp-0005Pw-1W for guix-devel@gnu.org; Tue, 01 Nov 2016 09:39:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1ZHl-0001i2-Vp for guix-devel@gnu.org; Tue, 01 Nov 2016 09:39:33 -0400 In-reply-to: <20161101122046.751-7-ricardo.wurmus@mdc-berlin.de> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ricardo Wurmus Cc: guix-devel@gnu.org Ricardo Wurmus writes: > * gnu/packages/python.scm (python-html5lib-0.9, python2-html5lib-0.9): > New variables. > --- > gnu/packages/python.scm | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index e6f537e..ed736ff 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -4789,6 +4789,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") Doesn't python-bleach work with the newer version of python-html5lib? The patch looks good to me. Kind regards, Roel Janssen