diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-17 17:17:23 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-17 22:24:03 -0500 |
commit | f91d1c30194a9168d0f30d35a024e44f7066d6e3 (patch) | |
tree | d4e268fbf0f31d62f3cecf374fb5221630c57f2c /gnu/packages | |
parent | 2bf53290df8923ee9a9deeb3d4cb18cd4ff68ca1 (diff) | |
download | guix-f91d1c30194a9168d0f30d35a024e44f7066d6e3.tar guix-f91d1c30194a9168d0f30d35a024e44f7066d6e3.tar.gz |
gnu: python-async-timeout: Update to 4.0.2.
* gnu/packages/python-xyz.scm (python-async-timeout): Update to 4.0.2.
[home-page]: Remove trailing / to please 'guix lint'.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 03791d6c7a..6ce8bd6402 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21705,16 +21705,16 @@ generators and Python 3.7's context managers into Python 3.5.") (define-public python-async-timeout (package (name "python-async-timeout") - (version "3.0.1") + (version "4.0.2") (source (origin (method url-fetch) (uri (pypi-uri "async-timeout" version)) (sha256 (base32 - "0pscbyr840m7fyfc3r8zv9kgkwdcn9f78p7zsrczciwd09m82g0c")))) + "05bbjz16n1a7m1s3lmcwri2x5rc7hnh6f2hdr2lbflnv1mjf2qr1")))) (build-system python-build-system) - (home-page "https://github.com/aio-libs/async_timeout/") + (home-page "https://github.com/aio-libs/async-timeout") (synopsis "Timeout context manager for asyncio programs") (description "@code{async-timeout} provides a timeout timeout context manager compatible with @code{asyncio}.") |