nixpkgs/pkgs/tools/text/csvkit/default.nix
R. RyanTM 096536ded5 csvkit: 1.0.3 -> 1.0.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/csvkit/versions
2019-04-14 05:38:44 -07:00

31 lines
739 B
Nix

{ lib, python3, glibcLocales }:
python3.pkgs.buildPythonApplication rec {
pname = "csvkit";
version = "1.0.4";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "1830lb95rh1iyi3drlwxzb6y3pqkii0qiyzd40c1kvhvaf1s6lqk";
};
propagatedBuildInputs = with python3.pkgs; [
agate agate-excel agate-dbf agate-sql six
];
checkInputs = with python3.pkgs; [
glibcLocales nose
];
checkPhase = ''
LC_ALL="en_US.UTF-8" nosetests -e test_csvsql
'';
meta = with lib; {
description = "A suite of command-line tools for converting to and working with CSV";
maintainers = with maintainers; [ vrthra ];
license = licenses.mit;
homepage = https://github.com/wireservice/csvkit;
};
}