python312Packages.autotrash: remove overuse of with lib;

This commit is contained in:
Sigmanificient 2024-07-26 01:20:48 +02:00
parent de768c2b36
commit 28d962be01

View File

@ -23,11 +23,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "autotrash" ]; pythonImportsCheck = [ "autotrash" ];
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; { meta = {
description = "Tool to automatically purge old trashed files"; description = "Tool to automatically purge old trashed files";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
homepage = "https://bneijt.nl/pr/autotrash"; homepage = "https://bneijt.nl/pr/autotrash";
maintainers = with maintainers; [ sigmanificient ]; maintainers = with lib.maintainers; [ sigmanificient ];
mainProgram = "autotrash"; mainProgram = "autotrash";
}; };
} }