make sure submodule is added in the correct location

This commit is contained in:
karenyyng
2015-10-03 19:13:08 -07:00
parent 79808da760
commit e9f7d033ff
4 changed files with 7 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ class PyAstropy(Package):
url="https://pypi.python.org/packages/source/a/astropy/astropy-0.4.2.tar.gz")
extends("python")
depends_on("py-numpy")
def install(self, spec, prefix):
python("setup.py", "install", "--prefix=%s" % prefix)

View File

@@ -11,6 +11,8 @@ class PyJsonschema(Package):
extends("python")
depends_on("py-setuptools@18.1")
depends_on("py-vcversioner")
depends_on("py-functools32")
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)