From 22a7f0cea1e279801f8ab62cd9d5484b66ede958 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Jun 2023 04:20:00 +0000 Subject: [PATCH 1/2] python310Packages.apprise: 1.3.0 -> 1.4.0 Changelog: https://github.com/caronc/apprise/releases/tag/v1.4.0 --- pkgs/development/python-modules/apprise/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index 1cc11426b480..c7a47f9b48ff 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "apprise"; - version = "1.3.0"; + version = "1.4.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-LFDBml3UExex9lnFKyGpkP6+bBXghGQiihzo5gmPEb8="; + hash = "sha256-4xUFNIVNrFPU8Hg42Mv7Is4NRdQuugX5bWbE9IQ81Vo="; }; nativeBuildInputs = [ From 0190867eeca7923123e75ea3c8a248c493ab3fb8 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Jun 2023 04:20:00 +0000 Subject: [PATCH 2/2] changedetection-io: unpin apprise dependency --- pkgs/servers/web-apps/changedetection-io/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/web-apps/changedetection-io/default.nix b/pkgs/servers/web-apps/changedetection-io/default.nix index 9b1810fab8c3..428d3d3aae3a 100644 --- a/pkgs/servers/web-apps/changedetection-io/default.nix +++ b/pkgs/servers/web-apps/changedetection-io/default.nix @@ -17,6 +17,7 @@ python3.pkgs.buildPythonApplication rec { postPatch = '' substituteInPlace requirements.txt \ + --replace "apprise~=1.3.0" "apprise" \ --replace "cryptography~=3.4" "cryptography" \ --replace "dnspython<2.3.0" "dnspython" \ --replace "pytest ~=6.2" "" \