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

main
Martin Weinelt 2 years ago
parent df3e27b5bb
commit 5769d201c1
  1. 7
      pkgs/development/python-modules/asttokens/default.nix

@ -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; {

Loading…
Cancel
Save