diff options
author | haralmha <47558670+haralmha@users.noreply.github.com> | 2022-03-09 09:28:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 09:28:27 +0100 |
commit | 27e3b34d6de5faa4857ef6a41a0357d5d5233954 (patch) | |
tree | e41e21a6bf828b824c153ae3c366adbfaf442b4c /var | |
parent | c523e2257538b63607ae50c9d29ce4aa27b5bab7 (diff) | |
download | spack-27e3b34d6de5faa4857ef6a41a0357d5d5233954.tar.gz spack-27e3b34d6de5faa4857ef6a41a0357d5d5233954.tar.bz2 spack-27e3b34d6de5faa4857ef6a41a0357d5d5233954.tar.xz spack-27e3b34d6de5faa4857ef6a41a0357d5d5233954.zip |
qmtest: add new package (#29377)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-qmtest/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-qmtest/package.py b/var/spack/repos/builtin/packages/py-qmtest/package.py new file mode 100644 index 0000000000..9498575448 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-qmtest/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2022 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 PyQmtest(PythonPackage): + """A general purpose testing framework""" + + homepage = "https://github.com/MentorEmbedded/qmtest" + url = "https://github.com/MentorEmbedded/qmtest/archive/refs/tags/2.4.1.tar.gz" + + maintainers = ['haralmha'] + + version('2.4.1', sha256='098f705aea9c8f7f5b6b5fe131974cee33b50cad3e13977e39708f306ce9ac91') + + depends_on('python@2.2:', type=('build', 'run')) + depends_on('py-setuptools', type='build') |