From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 01/11] gnu: Add python-pydiff. Date: Mon, 18 Sep 2017 22:29:05 +0200 Message-ID: <87bmm7hhta.fsf@gnu.org> References: <20170911182242.7422-1-tipecaml@gmail.com> <20170911182242.7422-2-tipecaml@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1du2fH-0001jo-9I for guix-devel@gnu.org; Mon, 18 Sep 2017 16:29:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1du2fG-0008Gh-8A for guix-devel@gnu.org; Mon, 18 Sep 2017 16:29:11 -0400 In-Reply-To: <20170911182242.7422-2-tipecaml@gmail.com> (Cyril Roelandt's message of "Mon, 11 Sep 2017 20:22:32 +0200") 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: Cyril Roelandt Cc: guix-devel@gnu.org Hello! Cyril Roelandt skribis: > * gnu/packages/python.scm (python-pydiff, python2-pydiff): New variables. > --- > gnu/packages/python.scm | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index d7156bf51..2efe8d2be 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -16282,3 +16282,25 @@ Templates.") >=20=20 > (define-public python2-uritemplate > (package-with-python2 python-uritemplate)) > + > +(define-public python-pydiff > + (package > + (name "python-pydiff") > + (version "0.2") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "pydiff" version)) > + (sha256 > + (base32 > + "1als83h9w0gab24ipyna6khm390qmpnpkc5jksmdbs2xc8hp2z44")))) > + (build-system python-build-system) > + (home-page "https://github.com/myint/pydiff") > + (synopsis "Library to diff two Python files at the bytecode level.") ^ Please placate =E2=80=98guix lint=E2=80=99. :-) Otherwise LGTM. Ludo=E2=80=99.