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
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
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;
};
}

View file

@ -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 { };