summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-10-05 02:54:40 -0500
committerGitHub <noreply@github.com>2020-10-05 09:54:40 +0200
commit3e7d9b42795f1614d3b18a9e340f674ca890a0bc (patch)
tree6df806483fb8050cbe2a504e42553adac4c3ace2 /var
parent8ba3f30f5c1e381be4dd608b2dff70fd1b35413a (diff)
downloadspack-3e7d9b42795f1614d3b18a9e340f674ca890a0bc.tar.gz
spack-3e7d9b42795f1614d3b18a9e340f674ca890a0bc.tar.bz2
spack-3e7d9b42795f1614d3b18a9e340f674ca890a0bc.tar.xz
spack-3e7d9b42795f1614d3b18a9e340f674ca890a0bc.zip
py-aioredis: added new package at v1.3.1 (#18996)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-aioredis/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-aioredis/package.py b/var/spack/repos/builtin/packages/py-aioredis/package.py
new file mode 100644
index 0000000000..6760e58471
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-aioredis/package.py
@@ -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'))