summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-traceback2/package.py
blob: 1f76eefac0fb1f6a2ce1bc5ee449e41942acfc5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 PyTraceback2(PythonPackage):
    """Backports of the traceback module"""

    homepage = "https://github.com/testing-cabal/traceback2"
    url      = "https://pypi.io/packages/source/t/traceback2/traceback2-1.4.0.tar.gz"

    version('1.4.0', sha256='05acc67a09980c2ecfedd3423f7ae0104839eccb55fc645773e1caa0951c3030')

    depends_on('py-setuptools', type='build')
    depends_on('py-linecache2', type=('build', 'run'))
    depends_on('py-pbr', type=('build', 'run'))