Merge pull request #10649 from jb55/xlsx2csv

xlsx2csv: init at 0.7.2
This commit is contained in:
Arseniy Seroka 2015-10-27 23:27:07 +03:00
commit ea42c98850
2 changed files with 17 additions and 0 deletions

View File

@ -10781,6 +10781,8 @@ let
xkeyboard_config = xorg.xkeyboardconfig;
xlsx2csv = pythonPackages.xlsx2csv;
zeal = callPackage ../data/documentation/zeal { };

View File

@ -20666,6 +20666,21 @@ let
};
};
xlsx2csv = buildPythonPackage rec {
name = "xlsx2csv-${version}";
version = "0.7.2";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/x/xlsx2csv/${name}.tar.gz";
md5 = "eea39d8ab08ff4503bb145171d0a46f6";
};
meta = {
homepage = https://github.com/bitprophet/alabaster;
description = "convert xlsx to csv";
license = licenses.bsd3;
maintainers = with maintainers; [ jb55 ];
};
};
xstatic-bootbox = buildPythonPackage rec {
name = "XStatic-Bootbox-${version}";
version = "4.3.0.1";