summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-18 14:51:46 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:03 +0100
commitbcc4d8c68fe0f9002cdfa32ce4c736c63b0e685e (patch)
treec154cd57d90e00ba4f6d5eaa5c8e3d46e46c18ad
parentfad9d8a5945e28e1f975fc81220d36acc5401322 (diff)
gnu: python-types-requests: Update to 2.32.4.20250611.
* gnu/packages/python-xyz.scm (python-types-requests): Update to 2.32.4.20250611. [arguments] <tests?>: No tests provided. [propagated-inputs]: Remove python-types-urllib3; add python-urllib3. [native-inputs]: Remove python-wheel. Change-Id: I390040e08fb411bc88e71ba116d8ab11e8dcb2e7
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f31309ab8c..e453751997 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37870,16 +37870,19 @@ Python, with static types.")
(define-public python-types-requests
(package
(name "python-types-requests")
- (version "2.30.0.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "types-requests" version))
- (sha256
- (base32
- "0cas3cjkhrvsz2rmqnhqiihy9j79wxi9xbih8jk0p9r48c2q3iyy"))))
+ (version "2.32.4.20250611")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "types_requests" version))
+ (sha256
+ (base32 "09pqdfa66d3p5dig26chrd6rpxs5wamxcm0yyl5q69b4xmvqf73l"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-types-urllib3))
- (native-inputs (list python-setuptools python-wheel))
+ (arguments (list #:tests? #f)) ;no tests in PyPI archive
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-urllib3))
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for requests")
(description "This package provides typing stubs for requests.")