From ea3906c0f30ed184ba1de2bd2990e174ab187b19 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 23 Jul 2013 11:50:32 +0200 Subject: [PATCH] pylint: install emacs lisp files --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 987e85ea8a6a..6905e4033b63 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4171,6 +4171,11 @@ pythonPackages = python.modules // rec { propagatedBuildInputs = [ logilab_astng ]; + 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";