python313Packages.pegen: disable failing tests on Python 3.13

This commit is contained in:
Fabian Affolter
2025-02-01 09:53:53 +01:00
parent 1a64296047
commit f0c81eaba2
@@ -42,6 +42,12 @@ buildPythonPackage rec {
"test_invalid_def_stmt"
];
disabledTestPaths = lib.optionals (pythonAtLeast "3.13") [
"tests/python_parser/test_ast_parsing.py"
"tests/python_parser/test_syntax_error_handling.py"
"tests/python_parser/test_unsupported_syntax.py"
];
meta = with lib; {
description = "Library to generate PEG parsers";
homepage = "https://github.com/we-like-parsers/pegen";