gnu: python-pip: Update to 25.1.1.

* gnu/packages/python-build.scm (python-pip): Update to 25.1.1.
  [build-system]: Use pyproject.
  [native-inputs]: Add python-setuptools.

Change-Id: I4d3280d0cbf21c64f0564e4683a385fd936cbb2a
This commit is contained in:
Sharlatan Hellseher 2025-07-11 22:40:38 +01:00
parent 43dd14030c
commit 6167484ea3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -256,14 +256,14 @@ Included are implementations of:
(define-public python-pip (define-public python-pip
(package (package
(name "python-pip") (name "python-pip")
(version "23.1") (version "25.1.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pip" version)) (uri (pypi-uri "pip" version))
(sha256 (sha256
(base32 (base32
"0jnk639v9h7ghslm4jnlic6rj3v29nygflx1hgxxndg5gs4kk1a0")) "0xwhrng91a48zb5qmb6vagbjr6kzvbc8b08nq9a5139h3m0mvr1x"))
(snippet (snippet
#~(begin #~(begin
(delete-file "src/pip/_vendor/certifi/cacert.pem") (delete-file "src/pip/_vendor/certifi/cacert.pem")
@ -293,9 +293,11 @@ def where() -> str:
def contents() -> str: def contents() -> str:
with open(where(), \"r\", encoding=\"ascii\") as data: with open(where(), \"r\", encoding=\"ascii\") as data:
return data.read()"))))))) return data.read()")))))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
'(#:tests? #f)) ; there are no tests in the pypi archive. '(#:tests? #f)) ; there are no tests in the pypi archive.
(native-inputs
(list python-setuptools))
(home-page "https://pip.pypa.io/") (home-page "https://pip.pypa.io/")
(synopsis "Package manager for Python software") (synopsis "Package manager for Python software")
(description (description