csvkit: 2.0.1 -> 2.1.0

Changelog: https://github.com/wireservice/csvkit/blob/2.1.0/CHANGELOG.rst
This commit is contained in:
emaryn
2025-04-20 23:12:47 +08:00
parent 77b5bffd0f
commit 3db039176a
+9 -15
View File
@@ -1,24 +1,22 @@
{
lib,
python3,
python3Packages,
fetchPypi,
}:
let
python3Packages.buildPythonApplication rec {
pname = "csvkit";
version = "2.0.1";
pythonEnv = python3;
in
pythonEnv.pkgs.buildPythonApplication {
inherit pname version;
version = "2.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-qpRgJm1XE/8xKkFO0+3Ybgw6MdqbLidYy+VkP+EUbdE=";
hash = "sha256-uR6PWkhYiMPFFbFcwlJc5L5c/NT0dm6tgxE+eHtf1TY=";
};
propagatedBuildInputs = with pythonEnv.pkgs; [
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
agate
agate-excel
agate-dbf
@@ -26,13 +24,9 @@ pythonEnv.pkgs.buildPythonApplication {
setuptools # csvsql imports pkg_resources
];
nativeCheckInputs = with pythonEnv.pkgs; [
pytestCheckHook
];
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
pythonImportsCheck = [
"csvkit"
];
pythonImportsCheck = [ "csvkit" ];
disabledTests = [
# Tries to compare CLI output - and fails!