mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
xlrd: Add python package
This commit is contained in:
parent
d1cc2c6c37
commit
4120720823
@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
@ -134,6 +134,8 @@
|
||||
{ "name": "psycopg2",
|
||||
"buildInputs": [ "pkgs.postgresql" ],
|
||||
"doCheck": false
|
||||
},
|
||||
{ "name": "xlrd",
|
||||
"doCheck": false
|
||||
}
|
||||
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user