diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-16 00:24:13 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:41 +0100 |
| commit | 79d32de996a9b419d15d9b6b067cfed8bcca4f60 (patch) | |
| tree | 5bdea77d41f0e1810f46e5f4177833703645a782 /gnu/packages/python-build.scm | |
| parent | 1a01bd67e4f6a357c4114f836e941260d97238c4 (diff) | |
gnu: Add python-setuptools-67.
* gnu/packages/python-build.scm (python-setuptools-67): New variable.
Change-Id: I3f317ab961f25d2b5760a376148f932caa4c722a
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 62a1af94e13..887fcb7d984 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -341,6 +341,22 @@ facilitate packaging Python projects, where packaging includes: license:asl2.0 ;packaging is dual ASL2/BSD-2 license:bsd-2)))) +(define-public python-setuptools-67 + (package + (inherit python-setuptools) + (version "67.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "setuptools" version)) + (sha256 + (base32 "16myxkpa89r045il88zcygdy1zbi2mvvpz5b4a70p9jhklmfjz95")) + (modules '((guix build utils))) + (snippet + '(for-each delete-file (find-files "setuptools" "^(cli|gui).*\\.exe$"))))) + (native-inputs + (list python-wheel-0.40)))) + (define-public python-setuptools-next (package (inherit python-setuptools) |
