2022-06-26 10:26:21 +00:00
|
|
|
{ lib
|
2022-10-06 18:32:54 +00:00
|
|
|
, stdenv
|
2023-03-15 16:39:30 +00:00
|
|
|
, python39
|
2023-07-15 17:15:38 +00:00
|
|
|
, fetchPypi
|
2022-06-26 10:26:21 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2022-10-06 18:32:54 +00:00
|
|
|
, withXmpp ? !stdenv.isDarwin
|
|
|
|
, withMatrix ? true
|
|
|
|
, withSlack ? true
|
|
|
|
, withEmoji ? true
|
|
|
|
, withPid ? true
|
|
|
|
, withDbus ? stdenv.isLinux
|
2022-06-26 10:26:21 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
let
|
2023-03-15 16:39:30 +00:00
|
|
|
python = python39.override {
|
|
|
|
packageOverrides = self: super: {
|
|
|
|
ntfy-webpush = self.callPackage ./webpush.nix { };
|
|
|
|
|
|
|
|
# databases, on which slack-sdk depends, is incompatible with SQLAlchemy 2.0
|
2023-07-15 17:15:38 +00:00
|
|
|
sqlalchemy = super.sqlalchemy.overridePythonAttrs rec {
|
2023-03-15 16:39:30 +00:00
|
|
|
version = "1.4.46";
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2023-03-15 16:39:30 +00:00
|
|
|
pname = "SQLAlchemy";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
|
|
|
|
};
|
2023-08-04 22:07:22 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
"test/aaa_profiling"
|
|
|
|
"test/ext/mypy"
|
|
|
|
];
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
2023-03-15 16:39:30 +00:00
|
|
|
};
|
|
|
|
};
|
2022-06-26 10:26:21 +00:00
|
|
|
in python.pkgs.buildPythonApplication rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "ntfy";
|
|
|
|
version = "2.7.0";
|
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dschep";
|
|
|
|
repo = "ntfy";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
|
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = with python.pkgs; [
|
2020-04-24 23:36:52 +00:00
|
|
|
mock
|
|
|
|
];
|
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
propagatedBuildInputs = with python.pkgs; ([
|
2021-12-06 16:07:01 +00:00
|
|
|
requests ruamel-yaml appdirs
|
2022-10-06 18:32:54 +00:00
|
|
|
ntfy-webpush
|
|
|
|
] ++ (lib.optionals withXmpp [
|
2021-06-28 23:13:55 +00:00
|
|
|
sleekxmpp dnspython
|
2022-10-06 18:32:54 +00:00
|
|
|
]) ++ (lib.optionals withMatrix [
|
|
|
|
matrix-client
|
|
|
|
]) ++ (lib.optionals withSlack [
|
|
|
|
slack-sdk
|
|
|
|
]) ++ (lib.optionals withEmoji [
|
2020-04-24 23:36:52 +00:00
|
|
|
emoji
|
2022-10-06 18:32:54 +00:00
|
|
|
]) ++ (lib.optionals withPid [
|
2020-04-24 23:36:52 +00:00
|
|
|
psutil
|
2022-10-06 18:32:54 +00:00
|
|
|
]) ++ (lib.optionals withDbus [
|
2020-04-24 23:36:52 +00:00
|
|
|
dbus-python
|
2022-10-06 18:32:54 +00:00
|
|
|
]));
|
2021-12-06 16:07:01 +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-12 12:06:08 +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=";
|
|
|
|
})
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2022-10-06 18:32:54 +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'"
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
checkPhase = ''
|
2022-06-26 10:26:21 +00:00
|
|
|
HOME=$(mktemp -d) ${python.interpreter} setup.py test
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A utility for sending notifications, on demand and when commands finish";
|
|
|
|
homepage = "http://ntfy.rtfd.org/";
|
|
|
|
license = licenses.gpl3;
|
2024-01-02 11:29:13 +00:00
|
|
|
maintainers = with maintainers; [ kamilchm ];
|
|
|
|
mainProgram = "ntfy";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|