pythonPackages.astroid: fix missing dependency
This commit is contained in:
parent
268439eb36
commit
b1152099cd
@ -979,13 +979,20 @@ in modules // {
|
|||||||
astroid = buildPythonPackage rec {
|
astroid = buildPythonPackage rec {
|
||||||
name = "astroid-1.4.4";
|
name = "astroid-1.4.4";
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy ];
|
propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy wrapt ];
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/a/astroid/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/a/astroid/${name}.tar.gz";
|
||||||
sha256 = "7f7e5512efe515098e77cbd3a60e87c8db8954097b0e025d8d6f72f2e8ddc298";
|
sha256 = "7f7e5512efe515098e77cbd3a60e87c8db8954097b0e025d8d6f72f2e8ddc298";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} -m unittest discover
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Tests cannot be found because they're named unittest_...
|
||||||
|
# instead of test_...
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A abstract syntax tree for Python with inference support";
|
description = "A abstract syntax tree for Python with inference support";
|
||||||
homepage = http://bitbucket.org/logilab/astroid;
|
homepage = http://bitbucket.org/logilab/astroid;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user