From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 02/10] gnu: Add python-wheel. Date: Thu, 3 Dec 2015 16:43:23 +0200 Message-ID: <1449153811-32039-3-git-send-email-efraim@flashner.co.il> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50316) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6p-0006GK-Fz for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4V6l-0000i0-A6 for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:47 -0500 Received: from flashner.co.il ([178.62.234.194]:60934) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4V6l-0000hk-3k for guix-devel@gnu.org; Thu, 03 Dec 2015 09:43:43 -0500 Received: from debian-netbook.jct.ac.il (unknown [213.151.53.59]) by flashner.co.il (Postfix) with ESMTPSA id 6467240559 for ; Thu, 3 Dec 2015 14:43:42 +0000 (UTC) In-Reply-To: <1449153811-32039-1-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 * gnu/packages/python.scm (python-wheel, python2-wheel): New variable. --- gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) 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)) +(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") -- 2.6.2