pythonPackages.antlr4-python3-runtime: init at 4.7.1

This commit is contained in:
Maxime Dénès
2018-03-07 19:10:17 +01:00
committed by Vincent Laporte
parent 09fb415c18
commit 50287f8c09
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
version = "4.7.1";
name = "antlr4-python3-runtime-${version}";
disabled = !isPy3k;
src = fetchurl {
url = "mirror://pypi/a/antlr4-python3-runtime/${name}.tar.gz";
sha256 = "1lrzmagawmavyw1n1z0qarvs2jmbnbv0p89dah8g7klj8hnbf9hv";
};
meta = {
description = "Runtime for ANTLR";
homepage = "http://www.antlr.org/";
license = stdenv.lib.licenses.bsd3;
};
}