python3Packages.apprise: 1.9.6 -> 1.9.7 (#482162)

This commit is contained in:
Nick Cao
2026-01-23 01:30:42 +00:00
committed by GitHub
@@ -21,14 +21,14 @@
testers,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "apprise";
version = "1.9.6";
version = "1.9.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Qga+nLVpSj0I3Y4Dk7u5s2ISrDp3acJjNiAFXnXGyu8=";
inherit (finalAttrs) pname version;
hash = "sha256-L3PMHgJk+xGf25t83oLo/eQKD1MayIXYxvDPD24TrsI=";
};
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
@@ -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}";
homepage = "https://appriseit.com/";
changelog = "https://github.com/caronc/apprise/releases/tag/v${finalAttrs.version}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "apprise";
};
}
})