From 933c9ecb6250121c78943beeb260b9b5fcd404d0 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 1 Dec 2025 08:40:06 +0000 Subject: [PATCH] gnu: Add python-setuptools-79. * gnu/packages/python-build.scm (python-setuptools-79): New variable. Change-Id: I4a20b5e1fc9a40749b56d193b50b823ba75cba86 Signed-off-by: Rutherther --- gnu/packages/python-build.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index e5bc27e901c76980d813509ea8bce34e340d3be2..4b07344eee445bb75dadc3f69235cc045971a453 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -392,6 +392,19 @@ facilitate packaging Python projects, where packaging includes: (native-inputs (list python-wheel-0.40)))) +(define-public python-setuptools-79 + (package + (inherit python-setuptools) + (name "python-setuptools") + (version "79.0.1") + (source + (origin + (inherit (package-source python-setuptools)) + (method url-fetch) + (uri (pypi-uri "setuptools" version)) + (sha256 + (base32 "127svm8cdpvmq37gcrbvdr9fhrhs0nscnzh63gypjc1wyfwfg30j")))))) + (define-deprecated/public-alias python-setuptools-next python-setuptools) ;may be removed after 2025-12-01