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