16 buildPythonPackage rec {
20 disabled = pythonOlder "3.6";
23 inherit pname version;
24 sha256 = "10nrvzk1naf5ryawmi59wp99k31053sz37q3x9li2hj2cf7i1kl1";
31 propagatedBuildInputs = [
39 mkdir -p $out/share/emacs/site-lisp
40 cp -v "elisp/"*.el $out/share/emacs/site-lisp/
41 installManPage man/*.1
50 dontUseSetuptoolsCheck = true;
52 # calls executable in one of the tests
54 export PATH=$PATH:$out/bin
61 disabledTests = lib.optionals stdenv.isDarwin [
62 "test_parallel_execution"
63 "test_py3k_jobs_option"
67 homepage = "https://pylint.pycqa.org/";
68 description = "A bug and style checker for Python";
69 license = licenses.gpl1Plus;
70 maintainers = with maintainers; [ nand0p ];