Update py-redis (#19063)

* Update of py-redis for merlin-1.7.5

* Add hiredis variant and python versions for 3.5.x versions.

* Update var/spack/repos/builtin/packages/py-redis/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Joe Koning 2020-10-12 12:05:09 -07:00 committed by GitHub
parent 7b0e628016
commit 7a8974c2d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,9 +12,13 @@ class PyRedis(PythonPackage):
homepage = "https://pypi.org/project/redis/"
url = "https://pypi.io/packages/source/r/redis/redis-3.3.8.tar.gz"
version('3.5.3', sha256='0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2')
version('3.5.0', sha256='7378105cd8ea20c4edc49f028581e830c01ad5f00be851def0f4bc616a83cd89')
version('3.3.8', sha256='98a22fb750c9b9bb46e75e945dc3f61d0ab30d06117cbb21ff9cd1d315fedd3b')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
variant("hiredis", default=False, description="Support for hiredis which speeds up parsing of multi bulk replies")
depends_on('python@2.7:2.8,3.4:', when="@3.3.0:3.3.99", type=('build', 'run'))
depends_on('python@2.7:2.8,3.5:', when="@3.4.0:", type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-hiredis', type=('build', 'run'))
depends_on('py-hiredis@0.1.3:', when="+hiredis", type=('build', 'run'))