py-aioredis: added new package at v1.3.1 (#18996)

This commit is contained in:
Adam J. Stewart 2020-10-05 02:54:40 -05:00 committed by GitHub
parent 8ba3f30f5c
commit 3e7d9b4279
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
class PyAioredis(PythonPackage):
"""asyncio (PEP 3156) Redis support."""
homepage = "https://github.com/aio-libs/aioredis"
url = "https://pypi.io/packages/source/a/aioredis/aioredis-1.3.1.tar.gz"
version('1.3.1', sha256='15f8af30b044c771aee6787e5ec24694c048184c7b9e54c3b60c750a4b93273a')
depends_on('python@3.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-async-timeout', type=('build', 'run'))
depends_on('py-hiredis', type=('build', 'run'))