11 buildPythonPackage rec {
12 pname = "flake8-length";
16 disabled = pythonOlder "3.6";
19 inherit pname version;
20 hash = "sha256-Dr1hTCU2G1STczXJsUPMGFYs1NpIAk1I95vxXsRTtRA=";
23 nativeBuildInputs = [ flit-core ];
25 propagatedBuildInputs = [ flake8 ];
27 nativeCheckInputs = [ pytestCheckHook ];
29 pythonImportsCheck = [ "flake8_length" ];
31 pytestFlagsArray = [ "tests/" ];
34 description = "Flake8 plugin for a smart line length validation";
35 homepage = "https://github.com/orsinium-labs/flake8-length";
36 changelog = "https://github.com/orsinium-labs/flake8-length/releases/tag/${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ sauyon ];