43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, buildPythonPackage, fetchPypi, python, astroid, isort,
|
|
pytest, pytestrunner, mccabe, configparser, backports_functools_lru_cache }:
|
|
|
|
buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "pylint";
|
|
version = "1.8.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4fe3b99da7e789545327b75548cee6b511e4faa98afe268130fea1af4b5ec022";
|
|
};
|
|
|
|
buildInputs = [ pytest pytestrunner mccabe configparser backports_functools_lru_cache ];
|
|
|
|
propagatedBuildInputs = [ astroid configparser isort mccabe ];
|
|
|
|
postPatch = ''
|
|
# Remove broken darwin tests
|
|
sed -i -e '/test_parallel_execution/,+2d' pylint/test/test_self.py
|
|
sed -i -e '/test_py3k_jobs_option/,+4d' pylint/test/test_self.py
|
|
rm -vf pylint/test/test_functional.py
|
|
'';
|
|
|
|
checkPhase = ''
|
|
cd pylint/test
|
|
${python.interpreter} -m unittest discover -p "*test*"
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
cp "elisp/"*.el $out/share/emacs/site-lisp/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.logilab.org/project/pylint;
|
|
description = "A bug and style checker for Python";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl1Plus;
|
|
maintainers = with maintainers; [ nand0p ];
|
|
};
|
|
}
|