diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-16 00:24:11 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 00:57:42 +0100 |
commit | 3e4c520ca58f90bbcf61efa0bb49dda69a27fc23 (patch) | |
tree | eab3dba8a6009a197bd0f2fe3d23634d0a5a2732 | |
parent | ad5ab27acc1cc2ceaf69e55c0077fa6c3e36692b (diff) |
gnu: Add python-wheel-0.40.
* gnu/packages/python-build.scm (python-wheel-0.40): New variable.
Change-Id: I67886ba3f30cac77dc92a6cef38cc7b1b971bb9b
-rw-r--r-- | gnu/packages/python-build.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 901ac18d83..0633e2f855 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -375,6 +375,17 @@ 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 python-wheel-0.40 + (package + (inherit python-wheel) + (version "0.40.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "wheel" version)) + (sha256 + (base32 "0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd")))))) + ;;; TODO: Deprecate with https://github.com/pypa/pyproject-hooks. ;;; ;;; From PyPI web page: The core of this package has been renamed to |