2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-11-09 23:34:30 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-11-09 23:34:30 +08:00
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyPudb(PythonPackage):
|
2016-11-09 23:34:30 +08:00
|
|
|
"""Full-screen console debugger for Python"""
|
|
|
|
|
|
|
|
homepage = "http://mathema.tician.de/software/pudb"
|
2017-03-21 07:08:45 +08:00
|
|
|
url = "https://pypi.io/packages/source/p/pudb/pudb-2017.1.1.tar.gz"
|
2016-11-09 23:34:30 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2017.1.1', sha256='87117640902c5f602c8517d0167eb5c953a5bdede97975ba29ff17e3d570442c')
|
|
|
|
version('2016.2', sha256='e958d7f7b1771cf297714e95054075df3b2a47455d7a740be4abbbd41289505a')
|
2016-11-09 23:34:30 +08:00
|
|
|
|
2017-03-21 07:08:45 +08:00
|
|
|
# Most Python packages only require setuptools as a build dependency.
|
|
|
|
# However, pudb requires setuptools during runtime as well.
|
|
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
|
|
depends_on('py-urwid@1.1.1:', type=('build', 'run'))
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on('py-pygments@1.0:', type=('build', 'run'))
|