about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jabberbot.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2017-01-19 18:57:36 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2017-01-19 19:10:23 +0100
commit6762884a9a862b4feda5d7776c966c9ebca26554 (patch)
tree85a1d6f8a3570db61296ea98a4e7a4dc2a4b0305 /pkgs/development/python-modules/jabberbot.nix
parent1708d4da13b53557fc95b2e1416288c4672400b6 (diff)
downloadnixlib-6762884a9a862b4feda5d7776c966c9ebca26554.tar
nixlib-6762884a9a862b4feda5d7776c966c9ebca26554.tar.gz
nixlib-6762884a9a862b4feda5d7776c966c9ebca26554.tar.bz2
nixlib-6762884a9a862b4feda5d7776c966c9ebca26554.tar.lz
nixlib-6762884a9a862b4feda5d7776c966c9ebca26554.tar.xz
nixlib-6762884a9a862b4feda5d7776c966c9ebca26554.tar.zst
nixlib-6762884a9a862b4feda5d7776c966c9ebca26554.zip
python27Packages.jabberbot: init at 0.16
Diffstat (limited to 'pkgs/development/python-modules/jabberbot.nix')
-rw-r--r--pkgs/development/python-modules/jabberbot.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jabberbot.nix b/pkgs/development/python-modules/jabberbot.nix
new file mode 100644
index 000000000000..efbd4b981fa5
--- /dev/null
+++ b/pkgs/development/python-modules/jabberbot.nix
@@ -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 ];
+  };
+}