From 24950904587c4d1ae59a75954230383bd242f155 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 7 Dec 2015 16:21:41 -0500 Subject: [PATCH 5/8] gnu: Add python-wheel. * gnu/packages/python.scm (python-wheel): New variable. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index c63e38e..f4f02e8 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7358,3 +7358,29 @@ different Python versions and interpreters, or run tests in each type of supported environment, or act as a frontend to continuous integration servers.") (license license:expat))) + +(define-public python-wheel + (package + (name "python-wheel") + (version "0.26.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/w/wheel/wheel-" + version ".tar.gz")) + (sha256 + (base32 + "032k1ajijbqnv0z0k88bhf75mdimi18fcmm28mss90610lw3bbga")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "https://bitbucket.org/pypa/wheel/") + (synopsis "A 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))) -- 2.6.3