From 7c64f88d0410d11f9010a3aa24e9f97f7896eedf Mon Sep 17 00:00:00 2001 From: Ludovico Piero Date: Sun, 2 Jun 2024 07:43:45 +0900 Subject: [PATCH] gallery-dl: format with nixfmt Signed-off-by: Ludovico Piero --- pkgs/applications/misc/gallery-dl/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/gallery-dl/default.nix b/pkgs/applications/misc/gallery-dl/default.nix index 4a0837bdbdd8..43e16c241374 100644 --- a/pkgs/applications/misc/gallery-dl/default.nix +++ b/pkgs/applications/misc/gallery-dl/default.nix @@ -1,4 +1,11 @@ -{ lib, buildPythonApplication, fetchPypi, requests, yt-dlp, pytestCheckHook }: +{ + lib, + buildPythonApplication, + fetchPypi, + requests, + yt-dlp, + pytestCheckHook, +}: buildPythonApplication rec { pname = "gallery-dl"; @@ -16,9 +23,7 @@ buildPythonApplication rec { yt-dlp ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ # requires network access @@ -29,9 +34,7 @@ buildPythonApplication rec { "--ignore=test/test_ytdl.py" ]; - pythonImportsCheck = [ - "gallery_dl" - ]; + pythonImportsCheck = [ "gallery_dl" ]; meta = with lib; { description = "Command-line program to download image-galleries and -collections from several image hosting sites";