1{ stdenv, buildPythonPackage, isPy3k, fetchPypi, xmpppy }: 2 3buildPythonPackage rec { 4 pname = "jabberbot"; 5 version = "0.16"; 6 7 disabled = isPy3k; 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1qr7c5p9a0nzsvri1djnd5r3d7ilh2mdxvviqn1s2hcc70rha65d"; 11 }; 12 13 propagatedBuildInputs = [ xmpppy ]; 14 15 doCheck = false; # lol, it does not even specify dependencies properly 16 17 meta = with stdenv.lib; { 18 description = "A framework for writing Jabber/XMPP bots and services"; 19 homepage = http://thp.io/2007/python-jabberbot/; 20 license = licenses.gpl3; 21 maintainers = with maintainers; [ mic92 ]; 22 }; 23}