[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/10: gnu: python-wheel: Clarify description.
From: |
Efraim Flashner |
Subject: |
08/10: gnu: python-wheel: Clarify description. |
Date: |
Sun, 17 Jan 2016 20:38:45 +0000 |
efraim pushed a commit to branch master
in repository guix.
commit e1ba074999747c8416355322361e2a6d158c6228
Author: Efraim Flashner <address@hidden>
Date: Sun Dec 27 09:39:51 2015 +0200
gnu: python-wheel: Clarify description.
* gnu/packages/python.scm (python-wheel): Do it.
---
gnu/packages/python.scm | 42 +++++++++++++++++++++++-------------------
1 files changed, 23 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 76bce72..13ad87f 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2119,25 +2119,29 @@ with sensible defaults out of the box.")
(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 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)))
+ (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 "Format for built Python packages")
+ (description
+ "A wheel is a ZIP-format archive with a specially formatted filename and
+the @code{.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. Many
+packages will be properly installed with only the @code{Unpack} step and the
+unpacked archive preserves enough information to @code{Spread} (copy data and
+scripts to their final locations) at any later time. Wheel files can be
+installed with a newer @code{pip} or with wheel's own command line utility.")
+ (license license:expat)))
(define-public python2-wheel
(package-with-python2 python-wheel))
- branch master updated (fb492b9 -> e8d2168), Efraim Flashner, 2016/01/17
- 02/10: gnu: Add python-futures., Efraim Flashner, 2016/01/17
- 01/10: gnu: Add python-keystoneclient., Efraim Flashner, 2016/01/17
- 04/10: gnu: Add python-rauth., Efraim Flashner, 2016/01/17
- 03/10: gnu: Add python-swiftclient., Efraim Flashner, 2016/01/17
- 05/10: gnu: Add python-pyasn1-modules., Efraim Flashner, 2016/01/17
- 06/10: gnu: Add python2-functools32., Efraim Flashner, 2016/01/17
- 10/10: gnu: Add git-annex-remote-hubic., Efraim Flashner, 2016/01/17
- 09/10: gnu: Add python-urllib3., Efraim Flashner, 2016/01/17
- 07/10: gnu: python-pytest-cov: Clarify description., Efraim Flashner, 2016/01/17
- 08/10: gnu: python-wheel: Clarify description.,
Efraim Flashner <=