summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-13 11:17:48 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:49 +0100
commite6dbf583f74330b8ff519d223c95638a6253c064 (patch)
tree06ebd47521cb36ee4a8fb2bef72dde44aa2db3ac /gnu/packages/python-xyz.scm
parent26c24db8c43bb91d75be9ecb3c44b139319d8042 (diff)
gnu: python-async-timeout: Update to 5.0.1.
* gnu/packages/python-xyz.scm (python-async-timeout): Update to 5.0.1. [native-inputs]: Add python-pytest-asyncio. Change-Id: Ia3332930600cf56c36454493e62776f921480c4c
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8048d0769d..27d29167e7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29154,13 +29154,13 @@ generators and Python 3.7's context managers into Python 3.5.")
(define-public python-async-timeout
(package
(name "python-async-timeout")
- (version "4.0.3")
+ (version "5.0.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "async-timeout" version))
+ (uri (pypi-uri "async_timeout" version))
(sha256
- (base32 "0bsj4z28ggxh1b6h6dvhx2mk6yqgb88bg8lyslpd10jdx1mxjh26"))))
+ (base32 "1lvparrx5sfnapaq4mwk0ai7kqrwg6h2ykc2gqc5wsjs7mx1lcnr"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -29173,6 +29173,7 @@ generators and Python 3.7's context managers into Python 3.5.")
((".*--cov.*") "")))))))
(native-inputs
(list python-pytest
+ python-pytest-asyncio
python-setuptools
python-wheel))
(home-page "https://github.com/aio-libs/async-timeout")