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

73 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, installShellFiles
, astroid
, isort
, mccabe
, toml
, pytest-benchmark
, pytest-xdist
, pytestCheckHook
}:
2017-09-06 16:28:21 +01:00
buildPythonPackage rec {
pname = "pylint";
2021-03-24 09:28:22 +00:00
version = "2.7.2";
2018-07-24 16:53:48 +01:00
disabled = pythonOlder "3.6";
2017-09-06 16:28:21 +01:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:22 +00:00
sha256 = "0e21d3b80b96740909d77206d741aa3ce0b06b41be375d92e1f3244a274c1f8a";
2017-09-06 16:28:21 +01:00
};
nativeBuildInputs = [
installShellFiles
];
propagatedBuildInputs = [
astroid
isort
mccabe
toml
];
2017-09-06 16:28:21 +01:00
postInstall = ''
mkdir -p $out/share/emacs/site-lisp
cp -v "elisp/"*.el $out/share/emacs/site-lisp/
installManPage man/*.1
2017-09-06 16:28:21 +01:00
'';
checkInputs = [
pytest-benchmark
pytest-xdist
pytestCheckHook
];
dontUseSetuptoolsCheck = true;
2019-10-17 08:41:52 +01:00
# calls executable in one of the tests
preCheck = ''
export PATH=$PATH:$out/bin
'';
pytestFlagsArray = [
"-n auto"
];
2017-09-06 16:28:21 +01:00
disabledTests = lib.optionals stdenv.isDarwin [
"test_parallel_execution"
"test_py3k_jobs_option"
];
2018-08-31 02:14:41 +01:00
meta = with lib; {
2020-09-19 05:20:00 +01:00
homepage = "https://pylint.pycqa.org/";
2017-09-06 16:28:21 +01:00
description = "A bug and style checker for Python";
license = licenses.gpl1Plus;
maintainers = with maintainers; [ nand0p ];
};
}