summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorFernando J Pando <fernando.pando@stelligent.com>2017-03-02 21:05:54 -0500
committerFernando J Pando <fernando.pando@stelligent.com>2017-03-03 08:46:46 -0500
commitf40b0f5e3741bd01142574db6eb54a748e19149b (patch)
treeef1fbb226003691fccb93952302fd5ab22db5900 /pkgs/top-level
parent6be140d621c89e37bb5eeea5338d50f4eb3ef20e (diff)
astroid: 1.4.4 -> 1.4.9
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix24
1 files changed, 1 insertions, 23 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 7ef9cfdb102e..d17233eb6567 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1369,29 +1369,7 @@ in {
};
});
- astroid = buildPythonPackage rec {
- name = "astroid-1.4.4";
-
- propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy wrapt ];
-
- src = pkgs.fetchurl {
- url = "mirror://pypi/a/astroid/${name}.tar.gz";
- sha256 = "7f7e5512efe515098e77cbd3a60e87c8db8954097b0e025d8d6f72f2e8ddc298";
- };
-
- checkPhase = ''
- ${python.interpreter} -m unittest discover
- '';
-
- # Tests cannot be found because they're named unittest_...
- # instead of test_...
-
- meta = {
- description = "A abstract syntax tree for Python with inference support";
- homepage = http://bitbucket.org/logilab/astroid;
- license = with licenses; [ lgpl2 ];
- };
- };
+ astroid = callPackage ../development/python-modules/astroid { };
attrdict = buildPythonPackage (rec {
name = "attrdict-2.0.0";