added a bunch of packages and added submodule

This commit is contained in:
karenyyng
2015-10-03 18:47:36 -07:00
parent 1501786fd9
commit 79808da760
278 changed files with 491 additions and 688 deletions

View File

@@ -0,0 +1,12 @@
from spack import *
class PyPythonDateutil(Package):
"""Extensions to the standard Python datetime module"""
homepage = "http://labix.org/python-dateutil"
version("2.2", "c1f654d0ff7e33999380a8ba9783fd5c",
url="https://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.2.tar.gz")
extends("python")
def install(self, spec, prefix):
python("setup.py", "install", "--prefix=%s" % prefix)