summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-testrepository/package.py
blob: 881191bc3fcd52ca92357475eb66dbd395ef11e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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 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'))