python310Packages.antlr4_9-python3-runtime: init at 4.9

This commit is contained in:
Jonas Heinrich 2022-07-13 10:05:24 +02:00 committed by Yt
parent ee31754de3
commit 4d4f2ba156
2 changed files with 12 additions and 6 deletions

View file

@ -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";

View file

@ -559,9 +559,13 @@ in {
ansiwrap = callPackage ../development/python-modules/ansiwrap { };
antlr4-python3-runtime = callPackage ../development/python-modules/antlr4-python3-runtime {
inherit (pkgs) antlr4;
antlr4_8-python3-runtime = callPackage ../development/python-modules/antlr4-python3-runtime {
antlr4 = pkgs.antlr4_8;
};
antlr4_9-python3-runtime = callPackage ../development/python-modules/antlr4-python3-runtime {
antlr4 = pkgs.antlr4_9;
};
antlr4-python3-runtime = self.antlr4_8-python3-runtime;
anyascii = callPackage ../development/python-modules/anyascii { };