2022-06-05 22:14:22 +00:00
|
|
|
{ lib
|
2022-09-24 16:14:59 +00:00
|
|
|
, stdenv
|
|
|
|
, python
|
2022-06-05 22:14:22 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2022-09-24 16:14:59 +00:00
|
|
|
, withXmpp ? !stdenv.isDarwin
|
|
|
|
, withMatrix ? true
|
|
|
|
, withSlack ? true
|
|
|
|
, withEmoji ? true
|
|
|
|
, withPid ? true
|
|
|
|
, withDbus ? stdenv.isLinux
|
2022-06-05 22:14:22 +00:00
|
|
|
}:
|
2018-11-30 17:57:33 +00:00
|
|
|
|
2022-06-05 22:14:22 +00:00
|
|
|
let
|
2022-09-24 16:14:59 +00:00
|
|
|
ntfy-webpush = python.pkgs.callPackage ./webpush.nix { };
|
2022-06-05 22:14:22 +00:00
|
|
|
in python.pkgs.buildPythonApplication rec {
|
2018-11-30 17:57:33 +00:00
|
|
|
pname = "ntfy";
|
|
|
|
version = "2.7.0";
|
|
|
|
|
2022-06-05 22:14:22 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2018-11-30 17:57:33 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dschep";
|
|
|
|
repo = "ntfy";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
|
|
|
|
};
|
|
|
|
|
2022-06-05 22:14:22 +00:00
|
|
|
checkInputs = with python.pkgs; [
|
2018-11-30 17:57:33 +00:00
|
|
|
mock
|
|
|
|
];
|
|
|
|
|
2022-09-24 16:14:59 +00:00
|
|
|
propagatedBuildInputs = with python.pkgs; ([
|
2021-11-03 10:10:50 +00:00
|
|
|
requests ruamel-yaml appdirs
|
2022-09-24 16:14:59 +00:00
|
|
|
ntfy-webpush
|
|
|
|
] ++ (lib.optionals withXmpp [
|
2021-06-22 21:38:50 +00:00
|
|
|
sleekxmpp dnspython
|
2022-09-24 16:14:59 +00:00
|
|
|
]) ++ (lib.optionals withMatrix [
|
|
|
|
matrix-client
|
|
|
|
]) ++ (lib.optionals withSlack [
|
|
|
|
slack-sdk
|
|
|
|
]) ++ (lib.optionals withEmoji [
|
2018-11-30 17:57:33 +00:00
|
|
|
emoji
|
2022-09-24 16:14:59 +00:00
|
|
|
]) ++ (lib.optionals withPid [
|
2018-11-30 17:57:33 +00:00
|
|
|
psutil
|
2022-09-24 16:14:59 +00:00
|
|
|
]) ++ (lib.optionals withDbus [
|
2018-11-30 17:57:33 +00:00
|
|
|
dbus-python
|
2022-09-24 16:14:59 +00:00
|
|
|
]));
|
2021-08-10 14:54:29 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
})
|
2022-08-04 02:16:48 +00:00
|
|
|
# Add compatibility with emoji 2.0
|
|
|
|
# https://github.com/dschep/ntfy/pull/250
|
|
|
|
(fetchpatch {
|
|
|
|
name = "ntfy-Add-compatibility-with-emoji-2.0.patch";
|
|
|
|
url = "https://github.com/dschep/ntfy/commit/4128942bb7a706117e7154a50a73b88f531631fe.patch";
|
|
|
|
sha256 = "sha256-V8dIy/K957CPFQQS1trSI3gZOjOcVNQLgdWY7g17bRw=";
|
|
|
|
})
|
2018-11-30 17:57:33 +00:00
|
|
|
];
|
|
|
|
|
2022-09-24 16:58:51 +00:00
|
|
|
postPatch = ''
|
|
|
|
# We disable the Darwin specific things because it relies on pyobjc, which we don't have.
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "':sys_platform == \"darwin\"'" "'darwin'"
|
|
|
|
'';
|
|
|
|
|
2018-11-30 17:57:33 +00:00
|
|
|
checkPhase = ''
|
2022-06-05 22:14:22 +00:00
|
|
|
HOME=$(mktemp -d) ${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 01:11:51 +00:00
|
|
|
homepage = "http://ntfy.rtfd.org/";
|
2018-11-30 17:57:33 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jfrankenau kamilchm ];
|
|
|
|
};
|
|
|
|
}
|