summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-16 09:02:36 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:44 +0100
commita64a34d05aca368a93ab800364893ee134366f72 (patch)
treee244cd15fcbfd805780ad67df47a9fdeeeaa9e28 /gnu/packages/python-web.scm
parentb1b864788b402ad79f64af295346fafdc4fda984 (diff)
gnu: python-requests: Update to 2.32.5.
* gnu/packages/python-web.scm (python-requests): Update to 2.32.5. [native-inputs]: Remove python-pip and python-wheel. Change-Id: I46a990efba2015a7c54d8dfad0c916635fa521ab
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index af3ce49b52a..0309d713b7d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5218,13 +5218,13 @@ APIs.")
(define-public python-requests
(package
(name "python-requests")
- (version "2.31.0")
+ (version "2.32.5")
(source (origin
(method url-fetch)
(uri (pypi-uri "requests" version))
(sha256
(base32
- "1qfidaynsrci4wymrw3srz8v1zy7xxpcna8sxpm91mwqixsmlb4l"))))
+ "1kypqz701x9s7j4shm1pdnzy4pzx9lmvhwgan0yqa071asn0pfnv"))))
(build-system pyproject-build-system)
(arguments
(list #:test-flags
@@ -5241,11 +5241,9 @@ APIs.")
python-idna
python-urllib3))
(native-inputs
- (list python-pip
- python-pytest
+ (list python-pytest
python-pytest-mock
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://requests.readthedocs.io/")
(synopsis "Python HTTP library")
(description