From fdf76201ea1b58c53934c7df4cb7fa48ded50ee8 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 28 Jul 2024 17:47:47 -0400 Subject: [PATCH] python312Packages.apprise: don't overuse `with lib;` https://github.com/NixOS/nixpkgs/issues/208242 --- pkgs/development/python-modules/apprise/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix index 76396668aec9..8d5125597190 100644 --- a/pkgs/development/python-modules/apprise/default.nix +++ b/pkgs/development/python-modules/apprise/default.nix @@ -75,12 +75,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "apprise" ]; - meta = with lib; { + 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}"; - license = licenses.bsd3; - maintainers = with maintainers; [ getchoo ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ getchoo ]; mainProgram = "apprise"; }; }