more fixes for use of setuptools in python packages

- py-setuptools is required by py-yt for importing yt in jupyter notebooks.
- add two dependencies needed for python 2.7
- add the py-subprocess32 package
This commit is contained in:
Matthew Krafczyk
2017-04-21 15:56:21 -07:00
committed by Todd Gamblin
parent 8b92908ab4
commit 16a7b27a9e
3 changed files with 37 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ class PyYt(PythonPackage):
depends_on("py-matplotlib", type=('build', 'run'))
depends_on("py-numpy", type=('build', 'run'))
depends_on("py-scipy", type=('build', 'run'), when="+scipy")
depends_on("py-setuptools", type="build")
depends_on("py-setuptools", type=('build', 'run'))
depends_on("py-sympy", type=('build', 'run'))
depends_on("rockstar@yt", type=('build', 'run'), when="+rockstar")
depends_on("python @2.7:2.999,3.4:")