csvkit: 2.0.1 -> 2.1.0

Changelog: https://github.com/wireservice/csvkit/blob/2.1.0/CHANGELOG.rst

emaryn 3db03917 77b5bffd

+9 -15
+9 -15
pkgs/by-name/cs/csvkit/package.nix
··· 1 1 { 2 2 lib, 3 - python3, 3 + python3Packages, 4 4 fetchPypi, 5 5 }: 6 6 7 - let 7 + python3Packages.buildPythonApplication rec { 8 8 pname = "csvkit"; 9 - version = "2.0.1"; 10 - pythonEnv = python3; 11 - in 12 - pythonEnv.pkgs.buildPythonApplication { 13 - inherit pname version; 9 + version = "2.1.0"; 14 10 pyproject = true; 15 11 16 12 src = fetchPypi { 17 13 inherit pname version; 18 - hash = "sha256-qpRgJm1XE/8xKkFO0+3Ybgw6MdqbLidYy+VkP+EUbdE="; 14 + hash = "sha256-uR6PWkhYiMPFFbFcwlJc5L5c/NT0dm6tgxE+eHtf1TY="; 19 15 }; 20 16 21 - propagatedBuildInputs = with pythonEnv.pkgs; [ 17 + build-system = with python3Packages; [ setuptools ]; 18 + 19 + dependencies = with python3Packages; [ 22 20 agate 23 21 agate-excel 24 22 agate-dbf ··· 26 24 setuptools # csvsql imports pkg_resources 27 25 ]; 28 26 29 - nativeCheckInputs = with pythonEnv.pkgs; [ 30 - pytestCheckHook 31 - ]; 27 + nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 32 28 33 - pythonImportsCheck = [ 34 - "csvkit" 35 - ]; 29 + pythonImportsCheck = [ "csvkit" ]; 36 30 37 31 disabledTests = [ 38 32 # Tries to compare CLI output - and fails!