
* 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>
25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
# 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyRedis(PythonPackage):
|
|
"""The Python interface to the Redis key-value store."""
|
|
|
|
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')
|
|
|
|
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@0.1.3:', when="+hiredis", type=('build', 'run'))
|