linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / antlr4-python3-runtime / default.nix
blob0fade1362c9c72deeeca70c416345ddeca0c8259
1 { lib, buildPythonPackage, isPy3k, python
2 , antlr4
3 }:
5 buildPythonPackage rec {
6   pname = "antlr4-python3-runtime";
7   inherit (antlr4.runtime.cpp) version src;
8   disabled = !isPy3k;
10   sourceRoot = "source/runtime/Python3";
12   checkPhase = ''
13     cd test
14     ${python.interpreter} ctest.py
15   '';
17   meta = with lib; {
18     description = "Runtime for ANTLR";
19     homepage = "https://www.antlr.org/";
20     license = licenses.bsd3;
21   };