mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-async-timeout: Update to 4.0.3.
* gnu/packages/python-xyz.scm (python-async-timeout): Update to 4.0.3. [build-system]: Swap to pyproject-build-system. [arguments]<phases>: Add 'fix-pytest-config. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. [descriptin]: Start from a new line. Change-Id: I1f2909d17a5ad3cff60acbd606cdf802fa1e463e
This commit is contained in:
parent
11684c6429
commit
4a28c902e0
1 changed files with 19 additions and 6 deletions
|
@ -27983,19 +27983,32 @@ generators and Python 3.7's context managers into Python 3.5.")
|
||||||
(define-public python-async-timeout
|
(define-public python-async-timeout
|
||||||
(package
|
(package
|
||||||
(name "python-async-timeout")
|
(name "python-async-timeout")
|
||||||
(version "4.0.2")
|
(version "4.0.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "async-timeout" version))
|
(uri (pypi-uri "async-timeout" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0bsj4z28ggxh1b6h6dvhx2mk6yqgb88bg8lyslpd10jdx1mxjh26"))))
|
||||||
"05bbjz16n1a7m1s3lmcwri2x5rc7hnh6f2hdr2lbflnv1mjf2qr1"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-pytest-config
|
||||||
|
(lambda _
|
||||||
|
;; Drop test coverage requirements
|
||||||
|
(substitute* "setup.cfg"
|
||||||
|
((".*--cov.*") "")))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(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")
|
(synopsis "Timeout context manager for asyncio programs")
|
||||||
(description "@code{async-timeout} provides a timeout timeout context
|
(description
|
||||||
manager compatible with @code{asyncio}.")
|
"@code{async-timeout} provides a timeout timeout context manager
|
||||||
|
compatible with @code{asyncio}.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-glob2
|
(define-public python-glob2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue