mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pythonpackages.csvkit: init csvkit at 0.9.1
csvkit is a suite of utilities for converting to and working with CSV, the king of tabular file formats.
This commit is contained in:
parent
2833788f94
commit
eed48a2c90
1 changed files with 20 additions and 0 deletions
|
@ -2056,6 +2056,26 @@ in modules // {
|
|||
doCheck = false; # lazy packager
|
||||
};
|
||||
|
||||
csvkit = buildPythonPackage rec {
|
||||
name = "csvkit-${version}";
|
||||
version = "0.9.1";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/c/csvkit/${name}.tar.gz";
|
||||
sha256 = "0fprr4wgp0bq8kl5qims88np11af7ahr5bxkrhfwpdgcgdjbiy4j";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ dateutil_2_2 dbf xlrd sqlalchemy openpyxl_2_2_0_b1 ];
|
||||
|
||||
meta = {
|
||||
description = "A library of utilities for working with CSV, the king of tabular file formats";
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
license = licenses.mit;
|
||||
homepage = "https://github.com/wireservice/csvkit";
|
||||
};
|
||||
};
|
||||
|
||||
cx_Freeze = buildPythonPackage rec {
|
||||
name = "cx_freeze-${version}";
|
||||
version = "4.3.4";
|
||||
|
|
Loading…
Reference in a new issue