about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jabberbot/default.nix
blob: 4c625d944859f6725982cb4cd621086adb98b8c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, buildPythonPackage, isPy3k, fetchPypi, xmpppy }:

buildPythonPackage rec {
  pname = "jabberbot";
  version = "0.16";

  disabled = isPy3k;
  src = fetchPypi {
    inherit pname version;
    sha256 = "1qr7c5p9a0nzsvri1djnd5r3d7ilh2mdxvviqn1s2hcc70rha65d";
  };

  propagatedBuildInputs = [ xmpppy ];

  doCheck = false; # lol, it does not even specify dependencies properly

  meta = with lib; {
    description = "A framework for writing Jabber/XMPP bots and services";
    homepage = "http://thp.io/2007/python-jabberbot/";
    license = licenses.gpl3;
    maintainers = with maintainers; [ mic92 ];
  };
}