aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/antlr4-python3-runtime/default.nix
blob: 0fade1362c9c72deeeca70c416345ddeca0c8259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, isPy3k, python
, antlr4
}:

buildPythonPackage rec {
  pname = "antlr4-python3-runtime";
  inherit (antlr4.runtime.cpp) version src;
  disabled = !isPy3k;

  sourceRoot = "source/runtime/Python3";

  checkPhase = ''
    cd test
    ${python.interpreter} ctest.py
  '';

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