summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-12-07 14:03:41 -0600
committerGitHub <noreply@github.com>2019-12-07 14:03:41 -0600
commitc88b95bd28b1ece65fc4631f73e95dac5b48f038 (patch)
treee1f5712b17e307891ddf28c903b842864563f7d6 /var
parente78865b3abb01cdb4f6bde1fb6762219fe1dbed8 (diff)
downloadspack-c88b95bd28b1ece65fc4631f73e95dac5b48f038.tar.gz
spack-c88b95bd28b1ece65fc4631f73e95dac5b48f038.tar.bz2
spack-c88b95bd28b1ece65fc4631f73e95dac5b48f038.tar.xz
spack-c88b95bd28b1ece65fc4631f73e95dac5b48f038.zip
Add new py-fixtures package (#14026)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-fixtures/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-fixtures/package.py b/var/spack/repos/builtin/packages/py-fixtures/package.py
new file mode 100644
index 0000000000..2f7f20a820
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-fixtures/package.py
@@ -0,0 +1,17 @@
+# 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 PyFixtures(PythonPackage):
+ """Fixtures, reusable state for writing clean tests and more."""
+
+ homepage = "https://launchpad.net/python-fixtures"
+ url = "https://pypi.io/packages/source/f/fixtures/fixtures-3.0.0.tar.gz"
+
+ version('3.0.0', sha256='fcf0d60234f1544da717a9738325812de1f42c2fa085e2d9252d8fff5712b2ef')
+
+ depends_on('py-setuptools', type='build')