{ lib , buildPythonPackage , fetchFromGitHub , isPy27 , attrs , colorlog , csvw , dateutil , tabulate , mock , postgresql , pytestCheckHook , pytest-mock }: buildPythonPackage rec { pname = "clldutils"; version = "3.5.4"; disabled = isPy27; src = fetchFromGitHub { owner = "clld"; repo = pname; rev = "v${version}"; sha256 = "0yirww9abp6hffxz57ms7ljyjw0pamw2bhfrf7cshpwwb6sx5ycf"; }; patchPhase = '' substituteInPlace setup.cfg --replace "--cov" "" ''; propagatedBuildInputs = [ dateutil tabulate colorlog attrs csvw ]; checkInputs = [ mock postgresql pytestCheckHook pytest-mock ]; meta = with lib; { description = "CSV on the Web"; homepage = "https://github.com/cldf/csvw"; license = licenses.asl20; maintainers = with maintainers; [ hexa ]; }; }