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