56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ stdenv, lib, buildPythonPackage, fetchPypi, pythonOlder, astroid,
|
|
isort, mccabe, pytestCheckHook, pytest-benchmark, pytestrunner, toml }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylint";
|
|
version = "2.5.2";
|
|
|
|
disabled = pythonOlder "3.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b95e31850f3af163c2283ed40432f053acbc8fc6eba6a069cb518d9dbf71848c";
|
|
};
|
|
|
|
nativeBuildInputs = [ pytestrunner toml ];
|
|
|
|
checkInputs = [ pytestCheckHook pytest-benchmark ];
|
|
|
|
propagatedBuildInputs = [ astroid isort mccabe ];
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
# Remove broken darwin test
|
|
rm -vf pylint/test/test_functional.py
|
|
'';
|
|
|
|
disabledTests = [
|
|
# https://github.com/PyCQA/pylint/issues/3198
|
|
"test_by_module_statement_value"
|
|
# has issues with local directories
|
|
"test_version"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"test_parallel_execution"
|
|
"test_py3k_jobs_option"
|
|
];
|
|
|
|
# calls executable in one of the tests
|
|
preCheck = ''
|
|
export PATH=$PATH:$out/bin
|
|
'';
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
cp "elisp/"*.el $out/share/emacs/site-lisp/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/PyCQA/pylint";
|
|
description = "A bug and style checker for Python";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl1Plus;
|
|
maintainers = with maintainers; [ nand0p ];
|
|
};
|
|
}
|