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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub, fetchpatch }:
2018-11-30 20:57:33 +03:00
python3Packages.buildPythonApplication rec {
2018-11-30 20:57:33 +03:00
pname = "ntfy";
version = "2.7.0";
src = fetchFromGitHub {
owner = "dschep";
repo = "ntfy";
rev = "v${version}";
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
};
checkInputs = with python3Packages; [
2018-11-30 20:57:33 +03:00
mock
];
propagatedBuildInputs = with python3Packages; [
requests ruamel-yaml appdirs
sleekxmpp dnspython
2018-11-30 20:57:33 +03:00
emoji
psutil
matrix-client
dbus-python
2021-08-02 14:59:26 +03:00
ntfy-webpush
slack-sdk
];
patches = [
# Fix Slack integration no longer working.
# From https://github.com/dschep/ntfy/pull/229 - "Swap Slacker for Slack SDK"
(fetchpatch {
name = "ntfy-Swap-Slacker-for-Slack-SDK.patch";
url = "https://github.com/dschep/ntfy/commit/2346e7cfdca84c8f1afc7462a92145c1789deb3e.patch";
sha256 = "13k7jbsdx0jx7l5s8whirric76hml5bznkfcxab5xdp88q52kpk7";
})
2018-11-30 20:57:33 +03:00
];
checkPhase = ''
HOME=$(mktemp -d) ${python3Packages.python.interpreter} setup.py test
2018-11-30 20:57:33 +03:00
'';
meta = with lib; {
2018-11-30 20:57:33 +03:00
description = "A utility for sending notifications, on demand and when commands finish";
homepage = "http://ntfy.rtfd.org/";
2018-11-30 20:57:33 +03:00
license = licenses.gpl3;
maintainers = with maintainers; [ jfrankenau kamilchm ];
};
}