Files
nixpkgs/pkgs/development/python-modules/jabberbot/default.nix
T

24 lines
624 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, xmpppy }:
2017-01-19 18:57:36 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "jabberbot";
version = "0.16";
2017-01-19 18:57:36 +01:00
disabled = isPy3k;
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-01-19 18:57:36 +01:00
sha256 = "1qr7c5p9a0nzsvri1djnd5r3d7ilh2mdxvviqn1s2hcc70rha65d";
};
propagatedBuildInputs = [ xmpppy ];
doCheck = false; # lol, it does not even specify dependencies properly
meta = with stdenv.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 ];
};
}