summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 22:29:10 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:35 +0100
commit242ddb07bfeb3ab2fe0bd78188814dc3802a9f95 (patch)
tree59543ba1b0e7e10a9da7f95035c8c760c76ca321 /gnu/packages/python-build.scm
parentb664eca850502bcc20aa8e88bb7c4de45ec897c7 (diff)
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
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index a6e5334ad8b..fa6256da14b 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -381,20 +381,21 @@ facilitate packaging Python projects, where packaging includes:
381(define-public python-wheel 381(define-public python-wheel
382 (package 382 (package
383 (name "python-wheel") 383 (name "python-wheel")
384 (version "0.40.0") 384 (version "0.46.1")
385 (source 385 (source
386 (origin 386 (origin
387 (method url-fetch) 387 (method url-fetch)
388 (uri (pypi-uri "wheel" version)) 388 (uri (pypi-uri "wheel" version))
389 (sha256 389 (sha256
390 (base32 390 (base32 "0f3abrpkf3spv0lk5mhv8m2ch0j074a3rivn7hfxzxx0bpxpwizx"))))
391 "0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd")))) 391 (build-system pyproject-build-system)
392 (build-system python-build-system)
393 (arguments 392 (arguments
394 ;; FIXME: The test suite runs "python setup.py bdist_wheel", which in turn 393 ;; FIXME: The test suite runs "python setup.py bdist_wheel", which in turn
395 ;; fails to find the newly-built bdist_wheel library, even though it is 394 ;; fails to find the newly-built bdist_wheel library, even though it is
396 ;; available on PYTHONPATH. What search path is consulted by setup.py? 395 ;; available on PYTHONPATH. What search path is consulted by setup.py?
397 '(#:tests? #f)) 396 '(#:tests? #f))
397 (native-inputs
398 (list python-flit-core))
398 (home-page "https://github.com/pypa/wheel") 399 (home-page "https://github.com/pypa/wheel")
399 (synopsis "Format for built Python packages") 400 (synopsis "Format for built Python packages")
400 (description 401 (description