summary refs log tree commit diff
path: root/pkgs/development/python-modules/antlr4-python3-runtime/default.nix
blob: 84f2859d50c032cec37f513cbf37bcec3c64c014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
  };
}