mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
pythonPackages.antlr4-python3-runtime: init at 4.7.1
This commit is contained in:
parent
09fb415c18
commit
50287f8c09
2 changed files with 20 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue