diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-07 15:38:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-07 15:38:56 -0600 |
commit | cec03c2db4f81392acdb7b5fa25efe140a9e961f (patch) | |
tree | 614d5a968bf8a3bc168ec4b792d696b7c560ee2e | |
parent | 1a662f428e17edd1b28edb1de02798cc66f25e69 (diff) | |
download | spack-cec03c2db4f81392acdb7b5fa25efe140a9e961f.tar.gz spack-cec03c2db4f81392acdb7b5fa25efe140a9e961f.tar.bz2 spack-cec03c2db4f81392acdb7b5fa25efe140a9e961f.tar.xz spack-cec03c2db4f81392acdb7b5fa25efe140a9e961f.zip |
Add new py-python-subunit package (#14028)
-rw-r--r-- | var/spack/repos/builtin/packages/py-python-subunit/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-subunit/package.py b/var/spack/repos/builtin/packages/py-python-subunit/package.py new file mode 100644 index 0000000000..412e1f8aa2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-python-subunit/package.py @@ -0,0 +1,19 @@ +# 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 PyPythonSubunit(PythonPackage): + """Python implementation of subunit test streaming protocol.""" + + homepage = "https://launchpad.net/subunit" + url = "https://pypi.io/packages/source/p/python-subunit/python-subunit-1.3.0.tar.gz" + + version('1.3.0', sha256='9607edbee4c1e5a30ff88549ce8d9feb0b9bcbcb5e55033a9d76e86075465cbb') + + depends_on('py-setuptools', type='build') + depends_on('py-extras', type=('build', 'run')) + depends_on('py-testtools@0.9.34:', type=('build', 'run')) |