mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
xlsx2csv: init at 0.7.2
This commit is contained in:
parent
612b6b7a8d
commit
2ca185688e
2 changed files with 17 additions and 0 deletions
|
@ -10781,6 +10781,8 @@ let
|
|||
|
||||
xkeyboard_config = xorg.xkeyboardconfig;
|
||||
|
||||
xlsx2csv = pythonPackages.xlsx2csv;
|
||||
|
||||
zeal = callPackage ../data/documentation/zeal { };
|
||||
|
||||
|
||||
|
|
|
@ -20662,6 +20662,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";
|
||||
|
|
Loading…
Reference in a new issue