summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-unittest2/package.py
blob: 2510d3739bdbcc90147a666e71d7fa3d5833410d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyUnittest2(PythonPackage):
    """unittest2 is a backport of the new features added to the unittest
    testing framework in Python 2.7 and onwards."""

    pypi = "unittest2/unittest2-1.1.0.tar.gz"

    version('1.1.0', sha256='22882a0e418c284e1f718a822b3b022944d53d2d908e1690b319a9d3eb2c0579')

    depends_on('py-setuptools', type='build')
    depends_on('py-traceback2', type=('build', 'run'))
    depends_on('py-six@1.4:', type=('build', 'run'))
    depends_on('py-argparse', type=('build', 'run'))