python310Packages.antlr4_9-python3-runtime: init at 4.9

This commit is contained in:
Jonas Heinrich
2022-07-26 07:20:24 -04:00
committed by Yt
parent ee31754de3
commit 4d4f2ba156
2 changed files with 12 additions and 6 deletions
@@ -1,11 +1,13 @@
{ lib, buildPythonPackage, isPy3k, python
, antlr4
}:
{ lib
, buildPythonPackage
, isPy3k
, python
, antlr4 }:
buildPythonPackage rec {
pname = "antlr4-python3-runtime";
inherit (antlr4.runtime.cpp) version src;
disabled = !isPy3k;
disabled = python.pythonOlder "3.6";
sourceRoot = "source/runtime/Python3";