summary refs log tree commit diff
path: root/pkgs/tools/misc/ntfy
diff options
context:
space:
mode:
authorJohannes Frankenau <johannes@frankenau.net>2018-11-30 18:57:33 +0100
committerJohannes Frankenau <johannes@frankenau.net>2018-11-30 19:03:22 +0100
commitdc21737eddac6494b24bb96e52b2ec42b1f3f8d8 (patch)
tree78bf56a0c55aea419cb1c2a78bc8267b4f29dd9e /pkgs/tools/misc/ntfy
parent3f3f6021593070330091a4a2bc785f6761bbb3c1 (diff)
downloadnixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.tar
nixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.tar.gz
nixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.tar.bz2
nixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.tar.lz
nixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.tar.xz
nixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.tar.zst
nixpkgs-dc21737eddac6494b24bb96e52b2ec42b1f3f8d8.zip
ntfy: 2.6.0 -> 2.7.0
Diffstat (limited to 'pkgs/tools/misc/ntfy')
-rw-r--r--pkgs/tools/misc/ntfy/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ntfy/default.nix b/pkgs/tools/misc/ntfy/default.nix
new file mode 100644
index 00000000000..26517361ae2
--- /dev/null
+++ b/pkgs/tools/misc/ntfy/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, pythonPackages, fetchFromGitHub }:
+
+pythonPackages.buildPythonApplication rec {
+  pname = "ntfy";
+  version = "2.7.0";
+
+  src = fetchFromGitHub {
+    owner = "dschep";
+    repo = "ntfy";
+    rev = "v${version}";
+    sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
+  };
+
+  checkInputs = with pythonPackages; [
+    mock
+  ];
+
+  propagatedBuildInputs = with pythonPackages; [
+    requests ruamel_yaml appdirs
+    sleekxmpp dns
+    emoji
+    psutil
+    matrix-client
+    dbus-python
+  ];
+
+  checkPhase = ''
+    HOME=$(mktemp -d) ${pythonPackages.python.interpreter} setup.py test
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A utility for sending notifications, on demand and when commands finish";
+    homepage = http://ntfy.rtfd.org/;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ jfrankenau kamilchm ];
+  };
+}