3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/flake8/default.nix

34 lines
1 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder
, mock, pytest, pytest-runner
, configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing ? null, importlib-metadata
2017-05-11 21:50:32 +01:00
}:
buildPythonPackage rec {
pname = "flake8";
2021-06-18 22:47:16 +01:00
version = "3.9.2";
2017-05-11 21:50:32 +01:00
src = fetchPypi {
inherit pname version;
2021-06-18 22:47:16 +01:00
sha256 = "07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b";
2017-05-11 21:50:32 +01:00
};
checkInputs = [ pytest mock pytest-runner ];
propagatedBuildInputs = [ pyflakes pycodestyle mccabe ]
++ 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
meta = with lib; {
2017-05-11 21:50:32 +01:00
description = "Code checking using pep8 and pyflakes";
homepage = "https://pypi.python.org/pypi/flake8";
2017-05-11 21:50:32 +01:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2017-05-11 21:50:32 +01:00
};
}