From 4bad8a38a4d029f09ee794d573446f610f7d27c0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 Jan 2026 01:25:55 +0000 Subject: [PATCH 1/3] python3Packages.apprise: 1.9.6 -> 1.9.7 --- 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 2560782f20fb..ba148c750a0f 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -23,12 +23,12 @@ buildPythonPackage rec { pname = "apprise"; - version = "1.9.6"; + version = "1.9.7"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-Qga+nLVpSj0I3Y4Dk7u5s2ISrDp3acJjNiAFXnXGyu8="; + hash = "sha256-L3PMHgJk+xGf25t83oLo/eQKD1MayIXYxvDPD24TrsI="; }; postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' From 82c63141ecab8b078a2ba0472357f396365ba78b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 21 Jan 2026 10:28:11 +0100 Subject: [PATCH 2/3] python313Packages.apprise: migrate to finalAttrs --- pkgs/development/python-modules/apprise/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index ba148c750a0f..ff355afdcf64 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -21,13 +21,13 @@ testers, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "apprise"; version = "1.9.7"; pyproject = true; src = fetchPypi { - inherit pname version; + inherit (finalAttrs) pname version; hash = "sha256-L3PMHgJk+xGf25t83oLo/eQKD1MayIXYxvDPD24TrsI="; }; @@ -68,16 +68,16 @@ buildPythonPackage rec { passthru = { tests.version = testers.testVersion { package = apprise; - version = "v${version}"; + version = "v${finalAttrs.version}"; }; }; meta = { description = "Push Notifications that work with just about every platform"; homepage = "https://github.com/caronc/apprise"; - changelog = "https://github.com/caronc/apprise/releases/tag/v${version}"; + changelog = "https://github.com/caronc/apprise/releases/tag/v${finalAttrs.version}"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ getchoo ]; mainProgram = "apprise"; }; -} +}) From f9dbf575ad93a290aa7e57c7a3640211a5166073 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 22 Jan 2026 15:26:13 +0100 Subject: [PATCH 3/3] python313Packages.apprise: update homepage --- 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 ff355afdcf64..92de3b4620c8 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -74,7 +74,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Push Notifications that work with just about every platform"; - homepage = "https://github.com/caronc/apprise"; + homepage = "https://appriseit.com/"; changelog = "https://github.com/caronc/apprise/releases/tag/v${finalAttrs.version}"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ getchoo ];