From c055b9b796d532b2ccfa22190551d6c03a728b59 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 6 Jun 2022 16:07:40 -0700 Subject: [PATCH] python3Packages.antlr4-python3-runtime: fix tests for 4.9+ --- .../python-modules/antlr4-python3-runtime/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/antlr4-python3-runtime/default.nix b/pkgs/development/python-modules/antlr4-python3-runtime/default.nix index 0fade1362c9c..d0e8d4fab439 100644 --- a/pkgs/development/python-modules/antlr4-python3-runtime/default.nix +++ b/pkgs/development/python-modules/antlr4-python3-runtime/default.nix @@ -9,8 +9,9 @@ buildPythonPackage rec { sourceRoot = "source/runtime/Python3"; + # in 4.9, test was renamed to tests checkPhase = '' - cd test + cd test* ${python.interpreter} ctest.py '';