2013-07-31 12:32:25 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
2015-02-17 09:20:13 +00:00
|
|
|
name = "pylint-1.4.1";
|
2013-07-31 12:32:25 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-05-13 15:11:06 +01:00
|
|
|
url = "https://pypi.python.org/packages/source/p/pylint/${name}.tar.gz";
|
2015-02-17 09:20:13 +00:00
|
|
|
sha256 = "0c7hw1pcp5sqmc0v86zygw21isfgzbsqdmlb1sywncnlxmh30f1y";
|
2013-07-31 12:32:25 +01:00
|
|
|
};
|
|
|
|
|
2014-05-13 15:11:06 +01:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ astroid ];
|
2013-07-31 12:32:25 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
|
|
cp "elisp/"*.el $out/share/emacs/site-lisp/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.logilab.org/project/pylint;
|
|
|
|
description = "A bug and style checker for Python";
|
|
|
|
};
|
|
|
|
}
|