summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2018-10-17 18:10:05 +0200
committerGitHub <noreply@github.com>2018-10-17 18:10:05 +0200
commitd968906517247932f5e5e35aabe0fa32eb69ffaf (patch)
treef8d59bac5d8e609f14b79ee143942a7ad46763be /pkgs/applications/networking
parentd0d04c26d7a06dee755fe85969c9a4de830169ae (diff)
parentd6a003e95305f87690fb07af7317f8269ee8aac3 (diff)
downloadnixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.tar
nixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.tar.gz
nixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.tar.bz2
nixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.tar.lz
nixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.tar.xz
nixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.tar.zst
nixlib-d968906517247932f5e5e35aabe0fa32eb69ffaf.zip
Merge pull request #48545 from mayflower/poezio-bump
Update poezio
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/poezio/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/poezio/default.nix b/pkgs/applications/networking/instant-messengers/poezio/default.nix
new file mode 100644
index 000000000000..b5fa1ccc2f41
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/poezio/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildPythonApplication, fetchurl, pythonOlder
+, pytest, aiodns, slixmpp, pyinotify, potr, mpd2, cffi, pkgconfig }:
+buildPythonApplication rec {
+    name = "poezio-${version}";
+    version = "0.12";
+
+    disabled = pythonOlder "3.4";
+
+    buildInputs = [ pytest ];
+    propagatedBuildInputs = [ aiodns slixmpp pyinotify potr mpd2 cffi ];
+    nativeBuildInputs = [ pkgconfig ];
+
+    src = fetchurl {
+      url = "http://dev.louiz.org/attachments/download/129/${name}.tar.gz";
+      sha256 = "11n9x82xyjwbqk28lsfnvqwn8qc9flv6w2c64camh6j3148ykpvz";
+    };
+
+    checkPhase = ''
+      py.test
+    '';
+
+    meta = with lib; {
+      description = "Free console XMPP client";
+      homepage = https://poez.io;
+      license = licenses.mit;
+      maintainers = [ maintainers.lsix ];
+    };
+  }