2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
2020-04-24 23:36:52 +00:00
|
|
|
, mock, pytest, pytestrunner
|
2021-04-26 19:14:03 +00:00
|
|
|
, configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing ? null, importlib-metadata
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "flake8";
|
2021-04-26 19:14:03 +00:00
|
|
|
version = "3.9.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-04-26 19:14:03 +00:00
|
|
|
sha256 = "78873e372b12b093da7b5e5ed302e8ad9e988b38b063b61ad937f26ca58fc5f0";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest mock pytestrunner ];
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [ pyflakes pycodestyle mccabe ]
|
2021-02-05 17:12:51 +00:00
|
|
|
++ lib.optionals (pythonOlder "3.2") [ configparser functools32 ]
|
|
|
|
++ lib.optionals (pythonOlder "3.4") [ enum34 ]
|
|
|
|
++ lib.optionals (pythonOlder "3.5") [ typing ]
|
|
|
|
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
# fixtures fail to initialize correctly
|
2020-04-24 23:36:52 +00:00
|
|
|
checkPhase = ''
|
2020-09-25 04:45:31 +00:00
|
|
|
py.test tests --ignore=tests/integration/test_checker.py
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Code checking using pep8 and pyflakes";
|
|
|
|
homepage = "https://pypi.python.org/pypi/flake8";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|