From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 02/10] gnu: Add python-wheel. Date: Fri, 11 Dec 2015 15:07:34 +0100 Message-ID: References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-3-git-send-email-efraim@flashner.co.il> <20151207212626.3c89daf7@debian-netbook> 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]:52635) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7OMP-0002d2-BV for guix-devel@gnu.org; Fri, 11 Dec 2015 09:07:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a7OMJ-0007sb-7L for guix-devel@gnu.org; Fri, 11 Dec 2015 09:07:49 -0500 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:46963) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7OMI-0007sS-Sz for guix-devel@gnu.org; Fri, 11 Dec 2015 09:07:43 -0500 In-Reply-To: <20151207212626.3c89daf7@debian-netbook> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Efraim Flashner Cc: guix-devel@gnu.org Efraim Flashner writes: > From 3cf9101ca83470ef4f19dd270b5afd689be02569 Mon Sep 17 00:00:00 2001 > From: Efraim Flashner > Date: Mon, 23 Nov 2015 18:44:57 +0200 > Subject: [PATCH 02/10] gnu: Add python-wheel. > * gnu/packages/python.scm (python-wheel, python2-wheel): New variables. > --- > gnu/packages/python.scm | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 280f0c9..442270c 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -2165,6 +2165,33 @@ with sensible defaults out of the box.") > (define-public python2-click > (package-with-python2 python-click)) =20 > +(define-public python-wheel > + (package > + (name "python-wheel") > + (version "0.26.0") > + (source The indentation is wrong here (and affects all following lines of this sub-expression). > + (origin > + (method url-fetch) > + (uri (pypi-uri "wheel" version)) > + (sha256 > + (base32 I also think that the indentation is wrong here. My Emacs aligns =E2=80=9C(base32=E2=80=9D with the =E2=80=9Cs=E2=80=9D of =E2=80=9C(sha25= 6=E2=80=9D. > + "032k1ajijbqnv0z0k88bhf75mdimi18fcmm28mss90610lw3bbga")))= ) > + (build-system python-build-system) > + (native-inputs > + `(("python-setuptools" ,python-setuptools) > + ("python-jsonschema" ,python-jsonschema) > + ("python-pytest-cov" ,python-pytest-cov))) > + (home-page "https://bitbucket.org/pypa/wheel/") > + (synopsis "Built-package format for Python") I don=E2=80=99t know what this means. > + (description > + "A wheel is a ZIP-format archive with a specially formatted filenam= e and the > +.whl extension. It is designed to contain all the files for a PEP 376 > +compatible install in a way that is very close to the on-disk format."= ) Okay, but what does this package provide? Is it a library to create or inspect wheel packages? I apologise for not bringing this up earlier, but this is the first time I actually read the description. (Before that I only paid attention to the input types.) ~~ Ricardo