mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-23 01:41:05 +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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue