guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a3f4f6962304f64304e423f8445ccb4f1561af31
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 16 00:24:13 2025 +0100
gnu: Add python-setuptools-67.
* gnu/packages/python-build.scm (python-setuptools-67): New variable.
Change-Id: I3f317ab961f25d2b5760a376148f932caa4c722a
---
gnu/packages/python-build.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 62a1af94e1..887fcb7d98 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)