xlrd: Add python package

This commit is contained in:
Sander van der Burg 2014-03-06 18:49:36 +01:00
parent d1cc2c6c37
commit 4120720823
2 changed files with 24 additions and 1 deletions

View File

@ -5349,5 +5349,26 @@ in
};
"xlrd" = self."xlrd-0.9.2";
"xlrd-0.9.2" = self.buildPythonPackage {
name = "xlrd-0.9.2";
src = fetchurl {
url = "https://pypi.python.org/packages/source/x/xlrd/xlrd-0.9.2.tar.gz";
md5 = "91a81ee76233e9f3115acaaa1b251b0e";
};
doCheck = false;
buildInputs = [ ];
propagatedBuildInputs = [ ];
installCommand = ''easy_install --always-unzip --prefix="$out" .'';
meta = {
description = ''
Library for developers to extract data from Microsoft Excel (tm) spreadsheet files
'';
homepage = "http://www.python-excel.org/";
license = "BSD";
};
};
}

View File

@ -134,6 +134,8 @@
{ "name": "psycopg2",
"buildInputs": [ "pkgs.postgresql" ],
"doCheck": false
},
{ "name": "xlrd",
"doCheck": false
}
]