summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-08-29 10:49:56 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-08-29 10:49:56 -0700
commit9bd9be037ae91ef7a5d156d35e10e773ee6b4bf6 (patch)
tree79edfe763582ee5c4a0e801ba6549eafff236467 /var
parent12dc64159fed52891b856580982475a08c62003d (diff)
downloadspack-9bd9be037ae91ef7a5d156d35e10e773ee6b4bf6.tar.gz
spack-9bd9be037ae91ef7a5d156d35e10e773ee6b4bf6.tar.bz2
spack-9bd9be037ae91ef7a5d156d35e10e773ee6b4bf6.tar.xz
spack-9bd9be037ae91ef7a5d156d35e10e773ee6b4bf6.zip
New package: py-pytest-cache (#12552)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pytest-cache/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-cache/package.py b/var/spack/repos/builtin/packages/py-pytest-cache/package.py
new file mode 100644
index 0000000000..6094911d4f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pytest-cache/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 PyPytestCache(PythonPackage):
+ """pytest plugin to provide cross-test run caching functionality to
+ plugins and test runs.
+ """
+
+ homepage = "https://bitbucket.org/hpk42/pytest-cache/src/default/"
+ url = "https://pypi.io/packages/source/p/pytest-cache/pytest-cache-1.0.tar.gz"
+
+ version('1.0', sha256='be7468edd4d3d83f1e844959fd6e3fd28e77a481440a7118d430130ea31b07a9')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pytest@2.2.0:2.7.3', type=('build', 'run'))
+ depends_on('py-execnet@1.2:', type=('build', 'run'))