10 buildPythonPackage rec {
13 disabled = pythonOlder "3.6";
16 inherit pname version;
17 hash = "sha256-jAe+KQu1nwNYiRWSHinopQACrK8s3F+g4BFPkXCfr6A=";
20 nativeCheckInputs = [ pytestCheckHook ];
22 disabledTests = lib.optionals (pythonAtLeast "3.10") [
23 # python changed exception message format in 3.10, 3.10 not yet supported
24 "test_python_exception_matches"
28 description = "A Python Parser";
29 homepage = "https://parso.readthedocs.io/en/latest/";
30 changelog = "https://github.com/davidhalter/parso/blob/master/CHANGELOG.rst";
31 license = licenses.mit;