guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2547ca30ce1d4789b0abf1c261740dee5be9803e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 11 22:29:10 2025 +0100
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
---
gnu/packages/python-build.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index a6e5334ad8..fa6256da14 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -381,20 +381,21 @@ facilitate packaging Python projects, where packaging
includes:
(define-public python-wheel
(package
(name "python-wheel")
- (version "0.40.0")
+ (version "0.46.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "wheel" version))
(sha256
- (base32
- "0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd"))))
- (build-system python-build-system)
+ (base32 "0f3abrpkf3spv0lk5mhv8m2ch0j074a3rivn7hfxzxx0bpxpwizx"))))
+ (build-system pyproject-build-system)
(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))
+ (native-inputs
+ (list python-flit-core))
(home-page "https://github.com/pypa/wheel")
(synopsis "Format for built Python packages")
(description