Merge pull request #127545 from liff/antlr/v4-is-default

antlr: make 4.8 default
This commit is contained in:
Sandro
2021-06-20 23:22:35 +02:00
committed by GitHub
7 changed files with 20 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
{ lib, fetchurl, buildPythonPackage, antlr, isPy3k }:
{ lib, fetchurl, buildPythonPackage, antlr2, isPy3k }:
buildPythonPackage rec {
pname = "PyStringTemplate";
@@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
};
propagatedBuildInputs = [ antlr ];
propagatedBuildInputs = [ antlr2 ];
disabled = isPy3k;