mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-wheel: Update to 0.46.1.
* gnu/packages/python-build.scm (python-wheel): Update to 0.46.1. [build-system]: Use pyproject. [native-inputs]: Add python-flit-core. Change-Id: I5b2e801b6c440bfd5b902e81004e9e28c59e8b19
This commit is contained in:
parent
b664eca850
commit
242ddb07bf
1 changed files with 5 additions and 4 deletions
|
@ -381,20 +381,21 @@ facilitate packaging Python projects, where packaging includes:
|
||||||
(define-public python-wheel
|
(define-public python-wheel
|
||||||
(package
|
(package
|
||||||
(name "python-wheel")
|
(name "python-wheel")
|
||||||
(version "0.40.0")
|
(version "0.46.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "wheel" version))
|
(uri (pypi-uri "wheel" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0f3abrpkf3spv0lk5mhv8m2ch0j074a3rivn7hfxzxx0bpxpwizx"))))
|
||||||
"0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: The test suite runs "python setup.py bdist_wheel", which in turn
|
;; 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
|
;; fails to find the newly-built bdist_wheel library, even though it is
|
||||||
;; available on PYTHONPATH. What search path is consulted by setup.py?
|
;; available on PYTHONPATH. What search path is consulted by setup.py?
|
||||||
'(#:tests? #f))
|
'(#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
(list python-flit-core))
|
||||||
(home-page "https://github.com/pypa/wheel")
|
(home-page "https://github.com/pypa/wheel")
|
||||||
(synopsis "Format for built Python packages")
|
(synopsis "Format for built Python packages")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue