19 let pylama = buildPythonPackage rec {
23 format = "setuptools";
25 src = fetchFromGitHub {
26 name = "${pname}-${version}-source";
30 hash = "sha256-WOGtZ412tX3YH42JCd5HIngunluwtMmQrOSUZp23LPU=";
36 git = "${lib.getBin git}/bin/git";
40 propagatedBuildInputs = [
51 # escape infinite recursion pylint -> isort -> pylama
64 "test_quotes" # FIXME package pylama-quotes
65 "test_radon" # FIXME package radon
68 pythonImportsCheck = [
73 check = pylama.overridePythonAttrs (_: { doCheck = true; });
77 description = "Code audit tool for python";
78 homepage = "https://github.com/klen/pylama";
79 changelog = "https://github.com/klen/pylama/blob/${version}/Changelog";
80 license = licenses.mit;
81 maintainers = with maintainers; [ dotlambda ];