summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-01-07 13:29:33 -0500
committerGitHub <noreply@github.com>2021-01-07 12:29:33 -0600
commitb6e32a265b74881bedc872143361d629c67935c8 (patch)
treeb6cea747aba59eed5ed7f4e6f5c1aef1fb6297c9 /var
parent1ada6376139ed1f01758f0d4bd69002c1b438a0e (diff)
downloadspack-b6e32a265b74881bedc872143361d629c67935c8.tar.gz
spack-b6e32a265b74881bedc872143361d629c67935c8.tar.bz2
spack-b6e32a265b74881bedc872143361d629c67935c8.tar.xz
spack-b6e32a265b74881bedc872143361d629c67935c8.zip
New package: py-testfixtures (#20432)
* [py-testfixtures] copied from slpits * [py-testfixtures] removed extends('python') * [py-testfixtures] removed unnecessary dependencies
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-testfixtures/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-testfixtures/package.py b/var/spack/repos/builtin/packages/py-testfixtures/package.py
new file mode 100644
index 0000000000..db69ebb6e8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-testfixtures/package.py
@@ -0,0 +1,18 @@
+# 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 PyTestfixtures(PythonPackage):
+ """Testfixtures is a collection of helpers and mock objects that are useful
+ when writing automated tests in Python."""
+
+ homepage = "https://github.com/Simplistix/testfixtures"
+ url = "https://github.com/Simplistix/testfixtures/archive/6.16.0.zip"
+
+ version('6.16.0', sha256='6b5bbca4f7d5692ca4566c60c0383b121d9f1cfecbc3de8442c499a63c264eb8')
+
+ depends_on('py-setuptools', type='build')