summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorFernando J Pando <fernando.pando@stelligent.com>2017-03-02 20:51:55 -0500
committerFernando J Pando <fernando.pando@stelligent.com>2017-03-03 08:37:42 -0500
commit6be140d621c89e37bb5eeea5338d50f4eb3ef20e (patch)
tree969a17b3bc59446f6cc057cc531327fc236c6450 /pkgs/top-level
parent3f116702cc1242e34d008a8f1793e6f542e79472 (diff)
pylint: 1.5.4 -> 1.6.5
- tested on nixos - tested on darwin
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix26
1 files changed, 1 insertions, 25 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 3a92359cb9ab..7ef9cfdb102e 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -20380,31 +20380,7 @@ in {
};
};
- pylint = buildPythonPackage rec {
- name = "pylint-${version}";
- version = "1.5.4";
-
- src = pkgs.fetchurl {
- url = "mirror://pypi/p/pylint/${name}.tar.gz";
- sha256 = "2fe3cc2fc66a56fdc35dbbc2bf1dd96a534abfc79ee6b2ad9ae4fe166e570c4b";
- };
-
- propagatedBuildInputs = with self; [ astroid ];
-
- 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 = {
- homepage = http://www.logilab.org/project/pylint;
- description = "A bug and style checker for Python";
- };
- };
+ pylint = callPackage ../development/python-modules/pylint { };
pyopencl = callPackage ../development/python-modules/pyopencl { };