Unverified Commit 0af910d6 authored by Stefan Frijters's avatar Stefan Frijters
Browse files

python3Packages.desktop-notifier: remove 'with lib'

parent 4de3f1b0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -42,11 +42,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "desktop_notifier" ];

  meta = with lib; {
  meta = {
    description = "Python library for cross-platform desktop notifications";
    homepage = "https://github.com/samschott/desktop-notifier";
    changelog = "https://github.com/samschott/desktop-notifier/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sfrijters ];
  };
}