Fix: setuptools is a runtime dependency for pudb (#3502)
This commit is contained in:
parent
d31bbe450b
commit
777acb4c03
1 changed files with 7 additions and 4 deletions
|
@ -30,10 +30,13 @@ class PyPudb(PythonPackage):
|
||||||
"""Full-screen console debugger for Python"""
|
"""Full-screen console debugger for Python"""
|
||||||
|
|
||||||
homepage = "http://mathema.tician.de/software/pudb"
|
homepage = "http://mathema.tician.de/software/pudb"
|
||||||
url = "https://pypi.io/packages/source/p/pudb/pudb-2016.2.tar.gz"
|
url = "https://pypi.io/packages/source/p/pudb/pudb-2017.1.1.tar.gz"
|
||||||
|
|
||||||
version('2016.2', '4573b70163329c1cb59836a357bfdf7c')
|
version('2017.1.1', '4ec3302ef90f22b13c60db16b3557c56')
|
||||||
|
version('2016.2', '4573b70163329c1cb59836a357bfdf7c')
|
||||||
|
|
||||||
depends_on('py-setuptools', type='build')
|
# Most Python packages only require setuptools as a build dependency.
|
||||||
depends_on('py-urwid@1.1.1:', type=('build', 'run'))
|
# 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'))
|
||||||
depends_on('py-pygments@1.0:', type=('build', 'run'))
|
depends_on('py-pygments@1.0:', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue