mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-23 09:51:00 +03:00
pythonPackages.antlr4-python2-runtime: init at 4.7.2
This commit is contained in:
parent
1c47ee8570
commit
cf4febf040
2 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "antlr4-python2-runtime";
|
||||
version = "4.7.2";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "04ljic5wnqpizln8q3c78pqrckz6q5nb433if00j1mlyv2yja22q";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Runtime for ANTLR";
|
||||
homepage = "https://www.antlr.org/";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -1092,6 +1092,8 @@ in {
|
|||
|
||||
amqplib = callPackage ../development/python-modules/amqplib {};
|
||||
|
||||
antlr4-python2-runtime = callPackage ../development/python-modules/antlr4-python2-runtime {};
|
||||
|
||||
antlr4-python3-runtime = callPackage ../development/python-modules/antlr4-python3-runtime {};
|
||||
|
||||
apipkg = callPackage ../development/python-modules/apipkg {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue