Files
nixpkgs/pkgs/development/python-modules/antlr4-python3-runtime/default.nix
T

19 lines
416 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
2018-06-23 15:27:58 +02:00
pname = "antlr4-python3-runtime";
version = "4.7.2";
disabled = !isPy3k;
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "02xm7ccsf51vh4xsnhlg6pvchm1x3ckgv9kwm222w5drizndr30n";
};
meta = {
description = "Runtime for ANTLR";
homepage = "http://www.antlr.org/";
license = stdenv.lib.licenses.bsd3;
};
}