From 79d32de996a9b419d15d9b6b067cfed8bcca4f60 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 16 Jul 2025 00:24:13 +0100 Subject: [PATCH] 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 62a1af94e13b9729747fe1d1ad92d7af219ba8a0..887fcb7d984acb52ee868ce0bf8f07745fd48038 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)