Add py-csvkit package

This adds the py-csvkit package and needed dependencies for working with
csv files.
This commit is contained in:
Glenn Johnson
2016-04-24 17:39:49 -05:00
parent ed16bd133a
commit 797af2e80f
6 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from spack import *
class PySqlalchemy(Package):
"""
The Python SQL Toolkit and Object Relational Mapper
"""
homepage = 'http://www.sqlalchemy.org/'
url = "https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-1.0.12.tar.gz"
version('1.0.12', '6d19ef29883bbebdcac6613cf391cac4')
extends('python')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)