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,16 @@
from spack import *
class PyXlrd(Package):
"""
Library for developers to extract data from Microsoft Excel (tm)
spreadsheet files
"""
homepage = 'http://www.python-excel.org/'
url = "https://pypi.python.org/packages/source/x/xlrd/xlrd-0.9.4.tar.gz"
version('0.9.4', '911839f534d29fe04525ef8cd88fe865')
extends('python')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)