40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, fetchPypi, buildPythonPackage, python, logilab_common, six
|
|
, lazy-object-proxy, wrapt, singledispatch, enum34, pythonOlder
|
|
, backports_functools_lru_cache
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "astroid";
|
|
version = "1.6.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f0a0e386dbca9f93ea9f3ea6f32b37a24720502b7baa9cb17c3976a680d43a06";
|
|
};
|
|
|
|
propagatedBuildInputs = [ logilab_common six lazy-object-proxy wrapt ]
|
|
++ lib.optionals (pythonOlder "3.4") [ enum34 singledispatch]
|
|
++ lib.optionals (pythonOlder "3.3") [ backports_functools_lru_cache ];
|
|
|
|
postPatch = ''
|
|
cd astroid/tests
|
|
for i in $(ls unittest*); do mv -v $i test_$i; done
|
|
cd ../..
|
|
rm -vf astroid/tests/test_unittest_inference.py
|
|
rm -vf astroid/tests/test_unittest_manager.py
|
|
'';
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m unittest discover
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A abstract syntax tree for Python with inference support";
|
|
homepage = https://bitbucket.org/logilab/astroid;
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ nand0p ];
|
|
};
|
|
}
|