summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-18 14:35:17 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:17 +0100
commita4de7d0f324f5d61279a474d4035a2269ea82808 (patch)
tree27e01ebe166879e3054dfa645f5f7a8553d6242e /gnu/packages/python-xyz.scm
parentdc7b9f4ac277ce4c7db0dcd5e76c6faeb9948142 (diff)
gnu: python-types-urllib3: Update to 1.26.25.14.
* gnu/packages/python-xyz.scm (python-types-urllib3): Update to 1.26.25.14. [native-inputs]: Remove python-wheel. Change-Id: Ia3cbd03abb3f06e6bfcc5e5378a1def63bf54b52
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm18
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 93a4a446a8..7de9dd2e93 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38028,15 +38028,17 @@ Python, with static types.")
(define-public python-types-urllib3
(package
(name "python-types-urllib3")
- (version "1.26.25.12")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "types-urllib3" version))
- (sha256
- (base32
- "0zcipjdnbnc8ymk8mh9n5mypa0qr03rqj98lbmahldcdrrap6md1"))))
+ (version "1.26.25.14")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "types-urllib3" version))
+ (sha256
+ (base32 "13ys7c7k9pg3lb11qvdgs9xq8j8bvcpjpg61j8dqq6wmgibpz6r2"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (arguments (list #:tests? #f)) ;no tests in PyPI archive
+ (native-inputs
+ (list python-setuptools))
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for urllib3")
(description "This package provides typing stubs for urllib3.")