[py-async-timeout] new versions (#28195)

* [py-async-timeout] new versions

* [py-async-timeout] corrected dependency

* [py-async-timeout] more fixes to dependencies
This commit is contained in:
Matthieu Dorier 2021-12-31 18:58:57 +01:00 committed by GitHub
parent 4e80b18851
commit fc9bfe5317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,13 @@ class PyAsyncTimeout(PythonPackage):
homepage = "https://github.com/aio-libs/async-timeout"
url = "https://github.com/aio-libs/async-timeout/archive/v3.0.1.tar.gz"
version('4.0.2', sha256='2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15')
version('4.0.1', sha256='b930cb161a39042f9222f6efb7301399c87eeab394727ec5437924a36d6eef51')
version('4.0.0', sha256='2116e8c7412929579e1d4e1b3c5fdfe3835c2002a0189451d183148239c05a17')
version('3.0.1', sha256='d0a7a927ed6b922835e1b014dfcaa9982caccbb25131320582cc660af7c93949')
depends_on('py-setuptools', type='build')
depends_on('python@3.5.3:', type=('build', 'run'))
depends_on('py-setuptools@45:', type='build')
depends_on('python@3.5.3:', type=('build', 'run'), when='@3.0.1:')
depends_on('python@3.6:', type=('build', 'run'), when='@4.0.1:')
depends_on('py-typing-extensions@3.6.5:', type=('build', 'run'), when='@4.0.1')
depends_on('py-typing-extensions@3.6.5:', type=('build', 'run'), when='@4.0.2: ^python@:3.7')