From c76125e0dcdc5709ccdfed8e7152112e4d3a4c34 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 11 Jul 2025 23:34:54 +0100 Subject: [PATCH] gnu: python-packaging-bootstrap: Update to 25.0. * gnu/packages/python-build.scm (python-packaging-bootstrap): Update to 25.0. [propagated-inputs]: Remove python-pyparsing and python-six-bootstrap. Change-Id: I57729f30f4b2d216bde3f2224c330fda24043299 --- gnu/packages/python-build.scm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index fa6256da14bddc2a80decb881abb432d3d8e5899..86819e8fdbf9116bea3104c2c86c9656b3b24d1f 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -489,18 +489,15 @@ that client code uses to construct the grammar directly in Python code.") (define-public python-packaging-bootstrap (package (name "python-packaging-bootstrap") - (version "24.2") + (version "25.0") (source (origin (method url-fetch) (uri (pypi-uri "packaging" version)) (sha256 - (base32 - "0zxrq3nn0lmmqp3p2d92v0yqbs29kl87k4vkqmmk8bckbvfaca62")))) + (base32 "0kzwn2ar4ndm90qrvgyjcbkqz3klrg0ziwm1yrhbyxynk0n8fhyl")))) (build-system pyproject-build-system) (arguments `(#:tests? #f)) ;disabled to avoid extra dependencies - (propagated-inputs - (list python-pyparsing python-six-bootstrap)) (native-inputs (list python-flit-core)) (home-page "https://github.com/pypa/packaging")