gnu: python-wheel: Clarify description.

* gnu/packages/python.scm (python-wheel): Do it.
This commit is contained in:
Efraim Flashner 2015-12-27 09:39:51 +02:00
parent 10468636ff
commit e1ba074999
1 changed files with 23 additions and 19 deletions

View File

@ -2119,25 +2119,29 @@ with sensible defaults out of the box.")
(package (package
(name "python-wheel") (name "python-wheel")
(version "0.26.0") (version "0.26.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "wheel" version)) (uri (pypi-uri "wheel" version))
(sha256 (sha256
(base32 (base32
"032k1ajijbqnv0z0k88bhf75mdimi18fcmm28mss90610lw3bbga")))) "032k1ajijbqnv0z0k88bhf75mdimi18fcmm28mss90610lw3bbga"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (native-inputs
`(("python-setuptools" ,python-setuptools) `(("python-setuptools" ,python-setuptools)
("python-jsonschema" ,python-jsonschema) ("python-jsonschema" ,python-jsonschema)
("python-pytest-cov" ,python-pytest-cov))) ("python-pytest-cov" ,python-pytest-cov)))
(home-page "https://bitbucket.org/pypa/wheel/") (home-page "https://bitbucket.org/pypa/wheel/")
(synopsis "Built-package format for Python") (synopsis "Format for built Python packages")
(description (description
"A wheel is a ZIP-format archive with a specially formatted filename and the "A wheel is a ZIP-format archive with a specially formatted filename and
.whl extension. It is designed to contain all the files for a PEP 376 the @code{.whl} extension. It is designed to contain all the files for a PEP
compatible install in a way that is very close to the on-disk format.") 376 compatible install in a way that is very close to the on-disk format. Many
(license license:expat))) 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 (define-public python2-wheel
(package-with-python2 python-wheel)) (package-with-python2 python-wheel))