73 lines
1.2 KiB
Nix
73 lines
1.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, installShellFiles
|
|
, astroid
|
|
, isort
|
|
, mccabe
|
|
, toml
|
|
, pytest-benchmark
|
|
, pytest-xdist
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylint";
|
|
version = "2.7.2";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0e21d3b80b96740909d77206d741aa3ce0b06b41be375d92e1f3244a274c1f8a";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
astroid
|
|
isort
|
|
mccabe
|
|
toml
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
cp -v "elisp/"*.el $out/share/emacs/site-lisp/
|
|
installManPage man/*.1
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytest-benchmark
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
# calls executable in one of the tests
|
|
preCheck = ''
|
|
export PATH=$PATH:$out/bin
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"-n auto"
|
|
];
|
|
|
|
disabledTests = lib.optionals stdenv.isDarwin [
|
|
"test_parallel_execution"
|
|
"test_py3k_jobs_option"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pylint.pycqa.org/";
|
|
description = "A bug and style checker for Python";
|
|
license = licenses.gpl1Plus;
|
|
maintainers = with maintainers; [ nand0p ];
|
|
};
|
|
}
|