summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com>2021-04-08 16:07:28 -0400
committerGitHub <noreply@github.com>2021-04-08 15:07:28 -0500
commit1c5c53f505bcc0052e81c62a8a030bc5ee5f37e9 (patch)
tree401eff9b589b3f2bffddb9de1fe6f57ee449e801
parent4adb76c4c5a65b808864e39d3fb6702e332fff51 (diff)
downloadspack-1c5c53f505bcc0052e81c62a8a030bc5ee5f37e9.tar.gz
spack-1c5c53f505bcc0052e81c62a8a030bc5ee5f37e9.tar.bz2
spack-1c5c53f505bcc0052e81c62a8a030bc5ee5f37e9.tar.xz
spack-1c5c53f505bcc0052e81c62a8a030bc5ee5f37e9.zip
new package: py-pytest-qt (#22878)
-rw-r--r--var/spack/repos/builtin/packages/py-pytest-qt/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-qt/package.py b/var/spack/repos/builtin/packages/py-pytest-qt/package.py
new file mode 100644
index 0000000000..88b828e0b0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pytest-qt/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2021 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 PyPytestQt(PythonPackage):
+ """A pytest plugin that allows programmers to write tests for
+ PySide, PySide2 and PyQt applications."""
+
+ homepage = "https://github.com/pytest-dev/pytest-qt"
+ pypi = "pytest-qt/pytest-qt-3.3.0.tar.gz"
+
+ version('3.3.0', sha256='714b0bf86c5313413f2d300ac613515db3a1aef595051ab8ba2ffe619dbe8925')
+
+ depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-setuptools-scm', type='build')
+ depends_on('py-pytest@3:', type=('build', 'run'))