{ lib , fetchPypi , buildPythonPackage , setuptools-scm , six , astroid , pytestCheckHook }: buildPythonPackage rec { pname = "asttokens"; version = "2.0.8"; src = fetchPypi { inherit pname version; sha256 = "sha256-xh4WJG7Pss3ilYQGtMjrwEPJ5tc6qoPJQWc7NeXTp2s="; }; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ six ]; checkInputs = [ astroid pytestCheckHook ]; disabledTests = [ # Test is currently failing on Hydra, works locally "test_slices" ]; disabledTestPaths = [ # incompatible with astroid 2.11.0, pins <= 2.5.3 "tests/test_astroid.py" ]; pythonImportsCheck = [ "asttokens" ]; meta = with lib; { homepage = "https://github.com/gristlabs/asttokens"; description = "Annotate Python AST trees with source text and token information"; license = licenses.asl20; maintainers = with maintainers; [ leenaars ]; }; }