2021-08-10 15:54:29 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub, fetchpatch }:
|
2018-11-30 17:57:33 +00:00
|
|
|
|
2020-09-17 02:17:49 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-11-30 17:57:33 +00:00
|
|
|
pname = "ntfy";
|
|
|
|
version = "2.7.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dschep";
|
|
|
|
repo = "ntfy";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
|
|
|
|
};
|
|
|
|
|
2020-09-17 02:17:49 +01:00
|
|
|
checkInputs = with python3Packages; [
|
2018-11-30 17:57:33 +00:00
|
|
|
mock
|
|
|
|
];
|
|
|
|
|
2020-09-17 02:17:49 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2021-11-03 10:10:50 +00:00
|
|
|
requests ruamel-yaml appdirs
|
2021-06-22 22:38:50 +01:00
|
|
|
sleekxmpp dnspython
|
2018-11-30 17:57:33 +00:00
|
|
|
emoji
|
|
|
|
psutil
|
|
|
|
matrix-client
|
|
|
|
dbus-python
|
2021-08-02 12:59:26 +01:00
|
|
|
ntfy-webpush
|
2021-08-10 15:54:29 +01:00
|
|
|
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 17:57:33 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
2020-09-17 02:17:49 +01:00
|
|
|
HOME=$(mktemp -d) ${python3Packages.python.interpreter} setup.py test
|
2018-11-30 17:57:33 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-30 17:57:33 +00:00
|
|
|
description = "A utility for sending notifications, on demand and when commands finish";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ntfy.rtfd.org/";
|
2018-11-30 17:57:33 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jfrankenau kamilchm ];
|
|
|
|
};
|
|
|
|
}
|