gnu: python-wheel: Update to 0.33.6.

* gnu/packages/python-xyz.scm (python-wheel): Update to 0.33.6.
[arguments]: Explicitly disable tests (they never ran before).
[native-inputs, properties]: Remove.
(python2-wheel): Use PACKAGE-WITH-PYTHON2.
This commit is contained in:
Marius Bakke 2020-01-15 20:11:05 +01:00
parent 6b3cef844c
commit 8f137daf8a
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -1908,18 +1908,20 @@ (define-public python2-click
(define-public python-wheel
(package
(name "python-wheel")
(version "0.32.3")
(version "0.33.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "wheel" version))
(sha256
(base32
"1dhxl1bf18bx9szmqcnxbg6204hp3im8089q3hkwh5jfa6zh75q2"))))
"0ii6f34rvpjg3nmw4bc2h7fhdsy38y1h93hghncfs5akfrldmj8h"))))
(build-system python-build-system)
(native-inputs
`(("python-jsonschema" ,python-jsonschema)
("python-pytest-cov" ,python-pytest-cov)))
(arguments
;; FIXME: The test suite runs "python setup.py bdist_wheel", which in turn
;; fails to find the newly-built bdist_wheel library, even though it is
;; available on PYTHONPATH. What search path is consulted by setup.py?
'(#:tests? #f))
(home-page "https://bitbucket.org/pypa/wheel/")
(synopsis "Format for built Python packages")
(description
@ -1930,15 +1932,10 @@ (define-public python-wheel
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)
(properties `((python2-variant . ,(delay python2-wheel))))))
(license license:expat)))
(define-public python2-wheel
(let ((wheel (package-with-python2
(strip-python2-variant python-wheel))))
(package (inherit wheel)
(native-inputs `(("python2-functools32" ,python2-functools32)
,@(package-native-inputs wheel))))))
(package-with-python2 python-wheel))
(define-public python-vcversioner
(package