2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
2017-05-11 21:50:32 +01:00
|
|
|
, mock, pytest, pytestrunner
|
2020-06-14 16:51:51 +01:00
|
|
|
, configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing, importlib-metadata
|
2017-05-11 21:50:32 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "flake8";
|
2020-10-25 09:06:52 +00:00
|
|
|
version = "3.8.4";
|
2017-05-11 21:50:32 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 09:06:52 +00:00
|
|
|
sha256 = "aadae8761ec651813c24be05c6f7b4680857ef6afaae4651a4eccaef97ce6c3b";
|
2017-05-11 21:50:32 +01:00
|
|
|
};
|
|
|
|
|
2019-02-14 08:42:05 +00:00
|
|
|
checkInputs = [ pytest mock pytestrunner ];
|
2020-06-14 16:51:51 +01:00
|
|
|
propagatedBuildInputs = [ pyflakes pycodestyle mccabe ]
|
2021-01-24 00:29:22 +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 ];
|
2019-02-14 08:42:05 +00:00
|
|
|
|
2020-08-16 21:11:58 +01:00
|
|
|
# fixtures fail to initialize correctly
|
2019-02-14 08:42:05 +00:00
|
|
|
checkPhase = ''
|
2020-08-16 21:11:58 +01:00
|
|
|
py.test tests --ignore=tests/integration/test_checker.py
|
2019-02-14 08:42:05 +00:00
|
|
|
'';
|
2017-05-11 21:50:32 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-11 21:50:32 +01:00
|
|
|
description = "Code checking using pep8 and pyflakes";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/flake8";
|
2017-05-11 21:50:32 +01:00
|
|
|
license = licenses.mit;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-11 21:50:32 +01:00
|
|
|
};
|
|
|
|
}
|