python3Packages.asttokens: move astroid to check inputs, disable astroid tests

This commit is contained in:
Martin Weinelt 2022-03-31 03:18:47 +02:00
parent df3e27b5bb
commit 5769d201c1

View file

@ -22,10 +22,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [
six
astroid
];
checkInputs = [
astroid
pytestCheckHook
];
@ -34,6 +34,11 @@ buildPythonPackage rec {
"test_slices"
];
disabledTestPaths = [
# incompatible with astroid 2.11.0, pins <= 2.5.3
"tests/test_astroid.py"
];
pythonImportsCheck = [ "asttokens" ];
meta = with lib; {