From e34a564dd17882bfca0d5398e40fc8365dc4d32b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 17 Sep 2024 08:57:33 +0200 Subject: [PATCH] unifi-protect-backup: format with nixfmt --- .../backup/unifi-protect-backup/default.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/backup/unifi-protect-backup/default.nix b/pkgs/applications/backup/unifi-protect-backup/default.nix index 30e4e4008596..1ffdeca5b38d 100644 --- a/pkgs/applications/backup/unifi-protect-backup/default.nix +++ b/pkgs/applications/backup/unifi-protect-backup/default.nix @@ -1,7 +1,8 @@ -{ lib -, fetchFromGitHub -, fetchpatch -, python3 +{ + lib, + fetchFromGitHub, + fetchpatch, + python3, }: python3.pkgs.buildPythonApplication rec { @@ -32,9 +33,7 @@ python3.pkgs.buildPythonApplication rec { "uiprotect" ]; - nativeBuildInputs = with python3.pkgs; [ - poetry-core - ]; + nativeBuildInputs = with python3.pkgs; [ poetry-core ]; propagatedBuildInputs = with python3.pkgs; [ aiocron @@ -49,9 +48,7 @@ python3.pkgs.buildPythonApplication rec { uiprotect ]; - nativeCheckInputs = with python3.pkgs; [ - pytestCheckHook - ]; + nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ]; meta = with lib; { description = "Python tool to backup unifi event clips in realtime";