diff options
author | wspear <wjspear@gmail.com> | 2019-10-14 01:35:41 -0700 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-10-14 10:35:41 +0200 |
commit | bdcf9ba5cd7af40c25009c2551d337eb80059379 (patch) | |
tree | a9034ea7583ab6f72c46ed95ed116984e4d887dd | |
parent | 04af0eb5a2e4bf91d63825b33cff62f36176c5f3 (diff) | |
download | spack-bdcf9ba5cd7af40c25009c2551d337eb80059379.tar.gz spack-bdcf9ba5cd7af40c25009c2551d337eb80059379.tar.bz2 spack-bdcf9ba5cd7af40c25009c2551d337eb80059379.tar.xz spack-bdcf9ba5cd7af40c25009c2551d337eb80059379.zip |
py-python-memcached: added new package at version 1.59 (#13133)
* Added package py-python-memcached, a dependency of python-oauth2
* Fixed line lengths
-rw-r--r-- | var/spack/repos/builtin/packages/py-python-memcached/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-memcached/package.py b/var/spack/repos/builtin/packages/py-python-memcached/package.py new file mode 100644 index 0000000000..13c14d38a6 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-python-memcached/package.py @@ -0,0 +1,21 @@ +# 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 PyPythonMemcached(PythonPackage): + """This software is a 100% Python interface to the memcached memory cache + daemon. It is the client side software which allows storing values in one + or more, possibly remote, memcached servers. Search google for memcached + for more information.""" + + homepage = "https://pypi.org/project/python-memcached/" + url = "https://pypi.io/packages/source/p/python-memcached/python-memcached-1.59.tar.gz" + + version('1.59', sha256='a2e28637be13ee0bf1a8b6843e7490f9456fd3f2a4cb60471733c7b5d5557e4f') + + depends_on('py-setuptools', type='build') + depends_on('py-six@1.4.0:', type=('build', 'run')) |