diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-11 22:40:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:48 +0100 |
| commit | 6167484ea30c8620cfd96b97f2aeda017606a876 (patch) | |
| tree | 85b6be00420e96f9686f152e29df85684da3f53b /gnu/packages/python-build.scm | |
| parent | 43dd14030c4a8e900c8e6d80ee01da9639137815 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 8b0221a3855..97d133ecb9c 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm | |||
| @@ -256,14 +256,14 @@ Included are implementations of: | |||
| 256 | (define-public python-pip | 256 | (define-public python-pip |
| 257 | (package | 257 | (package |
| 258 | (name "python-pip") | 258 | (name "python-pip") |
| 259 | (version "23.1") | 259 | (version "25.1.1") |
| 260 | (source | 260 | (source |
| 261 | (origin | 261 | (origin |
| 262 | (method url-fetch) | 262 | (method url-fetch) |
| 263 | (uri (pypi-uri "pip" version)) | 263 | (uri (pypi-uri "pip" version)) |
| 264 | (sha256 | 264 | (sha256 |
| 265 | (base32 | 265 | (base32 |
| 266 | "0jnk639v9h7ghslm4jnlic6rj3v29nygflx1hgxxndg5gs4kk1a0")) | 266 | "0xwhrng91a48zb5qmb6vagbjr6kzvbc8b08nq9a5139h3m0mvr1x")) |
| 267 | (snippet | 267 | (snippet |
| 268 | #~(begin | 268 | #~(begin |
| 269 | (delete-file "src/pip/_vendor/certifi/cacert.pem") | 269 | (delete-file "src/pip/_vendor/certifi/cacert.pem") |
| @@ -293,9 +293,11 @@ def where() -> str: | |||
| 293 | def contents() -> str: | 293 | def contents() -> str: |
| 294 | with open(where(), \"r\", encoding=\"ascii\") as data: | 294 | with open(where(), \"r\", encoding=\"ascii\") as data: |
| 295 | return data.read()"))))))) | 295 | return data.read()"))))))) |
| 296 | (build-system python-build-system) | 296 | (build-system pyproject-build-system) |
| 297 | (arguments | 297 | (arguments |
| 298 | '(#:tests? #f)) ; there are no tests in the pypi archive. | 298 | '(#:tests? #f)) ; there are no tests in the pypi archive. |
| 299 | (native-inputs | ||
| 300 | (list python-setuptools)) | ||
| 299 | (home-page "https://pip.pypa.io/") | 301 | (home-page "https://pip.pypa.io/") |
| 300 | (synopsis "Package manager for Python software") | 302 | (synopsis "Package manager for Python software") |
| 301 | (description | 303 | (description |
