summary refs log tree commit diff
path: root/pkgs/development/python-modules/antlr4-python3-runtime/default.nix
blob: 6f5fd3e934af0879a28b44d3daed2b8d2202f0f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:

buildPythonPackage rec {
  pname = "antlr4-python3-runtime";
  version = "4.7.2";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "02xm7ccsf51vh4xsnhlg6pvchm1x3ckgv9kwm222w5drizndr30n";
  };

  meta = {
    description = "Runtime for ANTLR";
    homepage = "http://www.antlr.org/";
    license = stdenv.lib.licenses.bsd3;
  };
}