From 3167a2a6efb0784088e5b9990f2c6aeaa459963b Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 12 May 2024 19:40:36 -0400 Subject: [PATCH 1/3] python311Packages.apprise: disable nondeterministic tests --- pkgs/development/python-modules/apprise/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index b29ddeedad7f..5e060e43022d 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -57,7 +57,11 @@ buildPythonPackage rec { disabledTests = [ "test_apprise_cli_nux_env" + # Nondeterministic. Fails with `assert 0 == 1` + "test_notify_emoji_general" "test_plugin_mqtt_general" + # Nondeterministic. Fails with `AssertionError` + "test_plugin_xbmc_kodi_urls" ]; disabledTestPaths = [ From b1e8ff61785d8a447f6dc429c5aaa7b34d65dde3 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 12 May 2024 19:41:25 -0400 Subject: [PATCH 2/3] python311Packages.apprise: modernize --- pkgs/development/python-modules/apprise/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index 5e060e43022d..86184cff84dc 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -38,7 +38,7 @@ buildPythonPackage rec { setuptools ]; - propagatedBuildInputs = [ + dependencies = [ click cryptography markdown From ef91aa449e076b802dc18740e72f04c0c7ee1f84 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 12 May 2024 19:41:38 -0400 Subject: [PATCH 3/3] python311Packages.apprise: adopt --- pkgs/development/python-modules/apprise/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index 86184cff84dc..e079703d17a0 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -80,7 +80,7 @@ buildPythonPackage rec { homepage = "https://github.com/caronc/apprise"; changelog = "https://github.com/caronc/apprise/releases/tag/v${version}"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ getchoo ]; mainProgram = "apprise"; }; }