Add new py-testrepository package (#14030)

This commit is contained in:
Adam J. Stewart 2019-12-07 15:39:53 -06:00 committed by GitHub
parent 129e548ac0
commit c1826d9d32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,28 @@
# 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 PyTestrepository(PythonPackage):
"""A repository of test results."""
homepage = "https://launchpad.net/testrepository"
url = "https://pypi.io/packages/source/t/testrepository/testrepository-0.0.20.tar.gz"
import_modules = [
'testrepository', 'testrepository.arguments',
'testrepository.commands', 'testrepository.repository',
'testrepository.tests', 'testrepository.tests.arguments',
'testrepository.tests.commands', 'testrepository.tests.repository',
'testrepository.tests.ui', 'testrepository.ui',
]
version('0.0.20', sha256='752449bc98c20253ec4611c40564aea93d435a5bf3ff672208e01cc10e5858eb')
depends_on('py-setuptools', type='build')
depends_on('py-fixtures', type=('build', 'run'))
depends_on('py-python-subunit@0.0.18:', type=('build', 'run'))
depends_on('py-testtools@0.9.30:', type=('build', 'run'))