summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-build.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index c77e36b4b42..00c7c3a24f2 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -344,6 +344,24 @@ facilitate packaging Python projects, where packaging includes:
344 license:asl2.0 ;packaging is dual ASL2/BSD-2 344 license:asl2.0 ;packaging is dual ASL2/BSD-2
345 license:bsd-2)))) 345 license:bsd-2))))
346 346
347(define-public python-setuptools-next
348 (package
349 (inherit python-setuptools)
350 (name "python-setuptools")
351 (version "79.0.1")
352 (source
353 (origin
354 (method url-fetch)
355 (uri (pypi-uri "setuptools" version))
356 (sha256
357 (base32 "127svm8cdpvmq37gcrbvdr9fhrhs0nscnzh63gypjc1wyfwfg30j"))
358 (modules '((guix build utils)))
359 (snippet
360 #~(begin
361 (for-each delete-file
362 (find-files "setuptools" "^(cli|gui).*\\.exe$"))))))
363 (build-system pyproject-build-system)))
364
347(define-public python-wheel 365(define-public python-wheel
348 (package 366 (package
349 (name "python-wheel") 367 (name "python-wheel")