nixpkgs/pkgs/tools/misc/ntfy/default.nix

38 lines
873 B
Nix
Raw Normal View History

{ stdenv, python3Packages, fetchFromGitHub }:
2018-11-30 18:57:33 +01:00
python3Packages.buildPythonApplication rec {
2018-11-30 18:57:33 +01:00
pname = "ntfy";
version = "2.7.0";
src = fetchFromGitHub {
owner = "dschep";
repo = "ntfy";
rev = "v${version}";
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
};
checkInputs = with python3Packages; [
2018-11-30 18:57:33 +01:00
mock
];
propagatedBuildInputs = with python3Packages; [
2018-11-30 18:57:33 +01:00
requests ruamel_yaml appdirs
sleekxmpp dns
emoji
psutil
matrix-client
dbus-python
];
checkPhase = ''
HOME=$(mktemp -d) ${python3Packages.python.interpreter} setup.py test
2018-11-30 18:57:33 +01:00
'';
meta = with stdenv.lib; {
description = "A utility for sending notifications, on demand and when commands finish";
homepage = "http://ntfy.rtfd.org/";
2018-11-30 18:57:33 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ jfrankenau kamilchm ];
};
}