From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: Re: [PATCH 02/10] gnu: Add python-wheel. Date: Mon, 7 Dec 2015 21:26:26 +0200 Message-ID: <20151207212626.3c89daf7@debian-netbook> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-3-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/G417Jpo/lvvQKqqlgNo4qSG"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50627) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a61Ut-0007X5-95 for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a61Up-0005Ou-Lo for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:55 -0500 Received: from flashner.co.il ([178.62.234.194]:43075) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a61Up-0005Oo-AN for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:51 -0500 Received: from debian-netbook (85.65.229.31.dynamic.barak-online.net [85.65.229.31]) by flashner.co.il (Postfix) with ESMTPSA id A1E01404D9 for ; Mon, 7 Dec 2015 19:30:50 +0000 (UTC) In-Reply-To: <1449153811-32039-3-git-send-email-efraim@flashner.co.il> 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: guix-devel@gnu.org --Sig_/G417Jpo/lvvQKqqlgNo4qSG Content-Type: multipart/mixed; boundary="MP_/_52bggxkV5ADcrGjDrFsUSB" --MP_/_52bggxkV5ADcrGjDrFsUSB Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thu, 3 Dec 2015 16:43:23 +0200 Efraim Flashner wrote: > * gnu/packages/python.scm (python-wheel, python2-wheel): New variable. > --- > gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) >=20 > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index d8fca79..b110921 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -2161,6 +2161,34 @@ 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 > + (origin > + (method url-fetch) > + (uri (pypi-uri "wheel" version)) > + (sha256 > + (base32 > + "032k1ajijbqnv0z0k88bhf75mdimi18fcmm28mss90610lw3bbga")))) > + (build-system python-build-system) > + (native-inputs > + `(("python-setuptools" ,python-setuptools))) > + (inputs > + `(("python-jsonschema" ,python-jsonschema) > + ("python-pytest-cov" ,python-pytest-cov))) > + (home-page "https://bitbucket.org/pypa/wheel/") > + (synopsis "Built-package format for Python") > + (description > + "A wheel is a ZIP-format archive with a specially formatted filename = 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.") > + (license license:expat))) > + > +(define-public python2-wheel > + (package-with-python2 python-wheel)) > + > (define-public python-requests > (package > (name "python-requests") --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --MP_/_52bggxkV5ADcrGjDrFsUSB Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0002-gnu-Add-python-wheel.patch =46rom 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 + (origin + (method url-fetch) + (uri (pypi-uri "wheel" version)) + (sha256 + (base32 + "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") + (description + "A wheel is a ZIP-format archive with a specially formatted filename an= d 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.") + (license license:expat))) + +(define-public python2-wheel + (package-with-python2 python-wheel)) + (define-public python-requests (package (name "python-requests") --=20 2.6.2 --MP_/_52bggxkV5ADcrGjDrFsUSB-- --Sig_/G417Jpo/lvvQKqqlgNo4qSG Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJWZd1jAAoJEPTB05F+rO6TYfAQAINtLkLuY4AU3wINVZkbDZWm Qq4TgG46RTRBgQR638O9Bh9e920G4btQ+QbbYtHDXlXp8vZe9cNALtX9isD5jUYV L3F3GTNPrxQ4k1hPRY+smjUQgn8mj8+o0hk1zS/ZjMuWeuUy8b1eXh1nv4rX/5hm i6FaFzQFIGV3KTES7q8WnDh/sygmww60dHfujhnkHY9IFp4Rw7Er0z+G/nWLm0uw Kiv+BNy60e2XTs9qNBKAvMMzmMnvmW0XjmunTobhmyNNYpU1vNjDP1/wbUdBJZ3h E6tjwvUs1/1kDiasXcRFi+qqwJE6cLEaAR+/6tu96S1I0INW4HmWkcJjThTXF/JU Yd1EsRWJbL7t4liDD9Fy0c06fAuYYuV0xUKDnzgj94LGJFvfBr7bFKuKO+nBbjby eYiL1LJqMuRUlbK/Cykr0Wu8bkfI7NRSzjLYEAMqKgPSosQRnAKKM0KR+YVC4tAS Y8Mi8eVxx0DYz0mWLQNDe0bWIzytwnMlOnhwyAgmO1w5kCaXPF+Y3anHk2wCQAqJ eXVvJR0rsmwyO0nDSQS6s7V0PstPGdxdNIjYyHq9CaCuBuTWrGF2t1CobM/+8/hA WW12+8nk+saV2obg9oi4DZORZ4M9W2rugHNJVfvCYlaoe2D2dBdTJm/LBa3cFwW9 fJSNonv5+2fjZynJY5dd =Dd84 -----END PGP SIGNATURE----- --Sig_/G417Jpo/lvvQKqqlgNo4qSG--