1{ lib, fetchPypi, buildPythonPackage, ply, isPy3k }: 2buildPythonPackage rec { 3 pname = "PlyPlus"; 4 version = "0.7.5"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp"; 9 }; 10 11 propagatedBuildInputs = [ ply ]; 12 13 doCheck = !isPy3k; 14 15 meta = { 16 homepage = "https://github.com/erezsh/plyplus"; 17 description = "A general-purpose parser built on top of PLY"; 18 maintainers = with lib.maintainers; [ twey ]; 19 license = lib.licenses.mit; 20 }; 21}