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