From eed48a2c90b183fb2d9d13a845ed9fc3c61c6fb5 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Sun, 8 May 2016 22:50:25 -0700 Subject: [PATCH] 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. --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cbc7da28cac..08e3014317fe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";