Merge pull request #113931 from Mic92/jabberbot

python3.pkgs.jabberbot: remove
This commit is contained in:
davidak 2021-02-22 02:04:30 +01:00 committed by GitHub
commit 169228fd49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 25 deletions

View File

@ -1,23 +0,0 @@
{ lib, 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 ];
};
}

View File

@ -3291,8 +3291,6 @@ in {
j2cli = callPackage ../development/python-modules/j2cli { };
jabberbot = callPackage ../development/python-modules/jabberbot { };
janus = callPackage ../development/python-modules/janus { };
jaraco_classes = callPackage ../development/python-modules/jaraco_classes { };