1834a3ed22
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-antlr4-python3-runtime/versions
19 lines
416 B
Nix
19 lines
416 B
Nix
{ 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;
|
|
};
|
|
}
|