19 lines
642 B
Python
19 lines
642 B
Python
# Copyright 2013-2019 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.3.8', sha256='98a22fb750c9b9bb46e75e945dc3f61d0ab30d06117cbb21ff9cd1d315fedd3b')
|
|
|
|
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type='build')
|