pythonPackages.antlr4-python3-runtime: init at 4.7.1
This commit is contained in:
parent
09fb415c18
commit
50287f8c09
@ -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;
|
||||
};
|
||||
}
|
@ -539,6 +539,8 @@ in {
|
||||
|
||||
amqplib = callPackage ../development/python-modules/amqplib {};
|
||||
|
||||
antlr4-python3-runtime = callPackage ../development/python-modules/antlr4-python3-runtime {};
|
||||
|
||||
apipkg = callPackage ../development/python-modules/apipkg {};
|
||||
|
||||
appdirs = callPackage ../development/python-modules/appdirs { };
|
||||
|
Loading…
Reference in New Issue
Block a user