depot/nix/pkgs/baserow/backend/pynixify/packages/antlr4-python3-runtime/default.nix

23 lines
609 B
Nix

# WARNING: This file was automatically generated. You should avoid editing it.
# If you run pynixify again, the file will be either overwritten or
# deleted, and you will lose the changes you made to it.
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "antlr4-python3-runtime";
version = "4.9.3";
src = fetchPypi {
inherit pname version;
sha256 = "06w8fz73rk8vzjz9rydfk56g4mbqpyl81yhypc14jab886dlc97j";
};
# TODO FIXME
doCheck = false;
meta = with lib; {
description = "ANTLR 4.9.3 runtime for Python 3.7";
homepage = "http://www.antlr.org";
};
}