depot/third_party/nixpkgs/pkgs/by-name/cs/csvkit/package.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

48 lines
1,020 B
Nix

{ lib
, python3
, fetchPypi
}:
let
pname = "csvkit";
version = "1.4.0";
pythonEnv = python3;
in
pythonEnv.pkgs.buildPythonApplication {
inherit pname version;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-LP7EM2egXMXl35nJCZC5WmNtjPmEukbOePzuj/ynr/g=";
};
propagatedBuildInputs = with pythonEnv.pkgs; [
agate
agate-excel
agate-dbf
agate-sql
setuptools # csvsql imports pkg_resources
];
nativeCheckInputs = with pythonEnv.pkgs; [
pytestCheckHook
];
pythonImportsCheck = [
"csvkit"
];
disabledTests = [
# Tries to compare CLI output - and fails!
"test_decimal_format"
];
meta = {
homepage = "https://github.com/wireservice/csvkit";
description = "A suite of command-line tools for converting to and working with CSV";
changelog = "https://github.com/wireservice/csvkit/blob/${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AndersonTorres ];
};
}