Add missing dependency to py-entrypoints (#4330)

This commit is contained in:
Adam J. Stewart
2017-05-25 09:49:00 -05:00
committed by GitHub
parent 8e9d905794
commit f8a7549f51
3 changed files with 17 additions and 11 deletions

View File

@@ -29,16 +29,13 @@ class PyConfigparser(PythonPackage):
"""This library brings the updated configparser from Python 3.5 to
Python 2.6-3.5."""
homepage = "https://pypi.python.org/pypi/configparser"
url = "https://pypi.python.org/packages/source/c/configparser/configparser-3.5.0.tar.gz"
homepage = "https://docs.python.org/3/library/configparser.html"
url = "https://pypi.io/packages/source/c/configparser/configparser-3.5.0.tar.gz"
version('3.5.0', 'cfdd915a5b7a6c09917a64a573140538',
url="https://pypi.python.org/packages/7c/69/c2ce7e91c89dc073eb1aa74c0621c3eefbffe8216b3f9af9d3885265c01c/configparser-3.5.0.tar.gz")
version('3.5.0', 'cfdd915a5b7a6c09917a64a573140538')
depends_on('python@2.6:2.8,3.4:')
depends_on('py-setuptools', type='build')
# This dependency breaks concretization
# See https://github.com/LLNL/spack/issues/2793
# depends_on('py-ordereddict', when='^python@2.6:2.6.999', type=('build', 'run')) # noqa
depends_on('py-setuptools', type='build')
# depends_on('py-ordereddict', when='^python@:2.6', type=('build', 'run'))