mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
python27Packages.jabberbot: init at 0.16
This commit is contained in:
parent
1708d4da13
commit
6762884a9a
22
pkgs/development/python-modules/jabberbot.nix
Normal file
22
pkgs/development/python-modules/jabberbot.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, buildPythonPackage, isPy3k, fetchurl, xmpppy }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "jabberbot-0.16";
|
||||
|
||||
disabled = isPy3k;
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/j/jabberbot/${name}.tar.gz";
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -13293,6 +13293,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
jabberbot = callPackage ../development/python-modules/jabberbot.nix {};
|
||||
|
||||
jedi = buildPythonPackage (rec {
|
||||
name = "jedi-0.9.0";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user