gnu: Add python-setuptools-67.

* gnu/packages/python-build.scm (python-setuptools-67): New variable.

Change-Id: I3f317ab961f25d2b5760a376148f932caa4c722a
This commit is contained in:
Sharlatan Hellseher 2025-07-16 00:24:13 +01:00
parent 1a01bd67e4
commit 79d32de996
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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)