summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Flood <neilflood@fastmail.fm>2018-07-19 12:42:57 +1000
committerAdam J. Stewart <ajstewart426@gmail.com>2018-07-18 21:42:57 -0500
commit186d3669c6c2e3201cded06a74e712281e111a4d (patch)
tree89aad642bdba55fb754107e5979c2ab556bb7069
parentab262ca9168a9da1f311776fca54115ec872e989 (diff)
downloadspack-186d3669c6c2e3201cded06a74e712281e111a4d.tar.gz
spack-186d3669c6c2e3201cded06a74e712281e111a4d.tar.bz2
spack-186d3669c6c2e3201cded06a74e712281e111a4d.tar.xz
spack-186d3669c6c2e3201cded06a74e712281e111a4d.zip
py-snuggs: Added depends_on py-parsing. The build uses setuptools, which would otherwise silently try to install pyparsing itself, presumably into the python home dir (obviously not ideal). (#8748)
-rw-r--r--var/spack/repos/builtin/packages/py-snuggs/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-snuggs/package.py b/var/spack/repos/builtin/packages/py-snuggs/package.py
index 69711908c8..975fdfbe03 100644
--- a/var/spack/repos/builtin/packages/py-snuggs/package.py
+++ b/var/spack/repos/builtin/packages/py-snuggs/package.py
@@ -35,3 +35,4 @@ class PySnuggs(PythonPackage):
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-click', type=('build', 'run'))
+ depends_on('py-pyparsing', type=('build', 'run'))