diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 12:36:30 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 12:41:43 +0100 |
commit | 76e10bcc5a1bd24352abb43fa276a87857a8eaa5 (patch) | |
tree | 0a3cd2c0ee60fc56d5212745d8b2641f8e05046e | |
parent | e4cd1b9d8f7402a9d16aaa937795fcbd84577065 (diff) | |
download | guix-76e10bcc5a1bd24352abb43fa276a87857a8eaa5.tar.gz guix-76e10bcc5a1bd24352abb43fa276a87857a8eaa5.zip |
gnu: Add python-setuptools-next.
* gnu/packages/python-build.scm (python-setuptools-next): New variable.
Change-Id: I2d295cddaa8ced23dd62a3526c4ed09aa03d8e69
-rw-r--r-- | gnu/packages/python-build.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index c77e36b4b4..00c7c3a24f 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -344,6 +344,24 @@ facilitate packaging Python projects, where packaging includes: license:asl2.0 ;packaging is dual ASL2/BSD-2 license:bsd-2)))) +(define-public python-setuptools-next + (package + (inherit python-setuptools) + (name "python-setuptools") + (version "79.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "setuptools" version)) + (sha256 + (base32 "127svm8cdpvmq37gcrbvdr9fhrhs0nscnzh63gypjc1wyfwfg30j")) + (modules '((guix build utils))) + (snippet + #~(begin + (for-each delete-file + (find-files "setuptools" "^(cli|gui).*\\.exe$")))))) + (build-system pyproject-build-system))) + (define-public python-wheel (package (name "python-wheel") |