Unverified Commit fdf76201 authored by seth's avatar seth
Browse files

python312Packages.apprise: don't overuse `with lib;`

parent 40d965fe
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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";
  };
}