Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "antlr4-python3-runtime"; 5 version = "4.7.2"; 6 disabled = !isPy3k; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "02xm7ccsf51vh4xsnhlg6pvchm1x3ckgv9kwm222w5drizndr30n"; 11 }; 12 13 meta = { 14 description = "Runtime for ANTLR"; 15 homepage = "http://www.antlr.org/"; 16 license = stdenv.lib.licenses.bsd3; 17 }; 18}