nixpkgs/pkgs/development/python-modules/flake8/default.nix

33 lines
1014 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pythonOlder
2017-05-11 21:50:32 +01:00
, mock, pytest, pytestrunner
, configparser, enum34, mccabe, pycodestyle, pyflakes, functools32, typing, importlib-metadata
2017-05-11 21:50:32 +01:00
}:
buildPythonPackage rec {
pname = "flake8";
2020-06-14 07:32:58 +01:00
version = "3.8.3";
2017-05-11 21:50:32 +01:00
src = fetchPypi {
inherit pname version;
2020-06-14 07:32:58 +01:00
sha256 = "f04b9fcbac03b0a3e58c0ab3a0ecc462e023a9faf046d57794184028123aa208";
2017-05-11 21:50:32 +01:00
};
2019-02-14 08:42:05 +00:00
checkInputs = [ pytest mock pytestrunner ];
propagatedBuildInputs = [ pyflakes pycodestyle mccabe ]
2019-02-14 08:42:05 +00:00
++ stdenv.lib.optionals (pythonOlder "3.2") [ configparser functools32 ]
2017-05-11 21:50:32 +01:00
++ stdenv.lib.optionals (pythonOlder "3.4") [ enum34 ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ]
++ stdenv.lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
2019-02-14 08:42:05 +00:00
checkPhase = ''
py.test tests
'';
2017-05-11 21:50:32 +01:00
meta = with stdenv.lib; {
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
};
}