2018-08-31 02:14:41 +01:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, python, pythonOlder, astroid,
|
2019-04-28 00:28:20 +01:00
|
|
|
isort, mccabe, pytest, pytestrunner }:
|
2017-03-03 01:51:55 +00:00
|
|
|
|
2017-09-06 16:28:21 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pylint";
|
2019-05-17 22:26:49 +01:00
|
|
|
version = "2.3.1";
|
2018-07-24 16:53:48 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.4";
|
2017-09-06 16:28:21 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-17 22:26:49 +01:00
|
|
|
sha256 = "1wgzq0da87m7708hrc9h4bc5m4z2p7379i4xyydszasmjns3sgkj";
|
2017-09-06 16:28:21 +01:00
|
|
|
};
|
|
|
|
|
2019-03-26 14:32:21 +00:00
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
|
|
|
2019-04-28 00:28:20 +01:00
|
|
|
checkInputs = [ pytest ];
|
2017-09-06 16:28:21 +01:00
|
|
|
|
2018-07-24 16:53:48 +01:00
|
|
|
propagatedBuildInputs = [ astroid isort mccabe ];
|
2017-09-06 16:28:21 +01:00
|
|
|
|
2018-08-31 02:14:41 +01:00
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
2018-07-24 16:53:48 +01:00
|
|
|
# Remove broken darwin test
|
2017-09-06 16:28:21 +01:00
|
|
|
rm -vf pylint/test/test_functional.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-08-31 02:14:41 +01:00
|
|
|
pytest pylint/test -k "not ${lib.concatStringsSep " and not " (
|
2018-12-02 22:35:07 +00:00
|
|
|
# Broken tests
|
|
|
|
[ "member_checks_py37" "iterable_context_py36" ] ++
|
2018-08-31 02:14:41 +01:00
|
|
|
# Disable broken darwin tests
|
|
|
|
lib.optionals stdenv.isDarwin [
|
|
|
|
"test_parallel_execution"
|
|
|
|
"test_py3k_jobs_option"
|
|
|
|
]
|
|
|
|
)}"
|
2017-09-06 16:28:21 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
|
|
cp "elisp/"*.el $out/share/emacs/site-lisp/
|
|
|
|
'';
|
|
|
|
|
2018-08-31 02:14:41 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/PyCQA/pylint;
|
2017-09-06 16:28:21 +01:00
|
|
|
description = "A bug and style checker for Python";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl1Plus;
|
|
|
|
maintainers = with maintainers; [ nand0p ];
|
|
|
|
};
|
|
|
|
}
|