From 990ab561479560a990785285c345d00bc382ebd2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 8 Nov 2022 16:34:50 +0100 Subject: [PATCH] python310Packages.apprise: 1.0.0 -> 1.1.0 --- pkgs/development/python-modules/apprise/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index 95a993e359a6..864dd570209e 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -14,7 +14,6 @@ , pyyaml , requests , requests-oauthlib -, six , slixmpp }: @@ -42,7 +41,6 @@ buildPythonPackage rec { pyyaml requests requests-oauthlib - six ]; checkInputs = [ @@ -58,6 +56,11 @@ buildPythonPackage rec { "test_plugin_mqtt_general" ]; + disabledTestPaths = [ + # AttributeError: module 'apprise.plugins' has no attribute 'NotifyBulkSMS' + "test/test_plugin_bulksms.py" + ]; + postInstall = '' installManPage packaging/man/apprise.1 '';