Merge pull request #198482 from marsam/update-gallery-dl

gallery-dl: 1.23.3 -> 1.23.4

authored by

Mario Rodas and committed by
GitHub
f9b99912 b7eb3ded

+16 -7
+16 -7
pkgs/applications/misc/gallery-dl/default.nix
··· 1 { lib, buildPythonApplication, fetchPypi, requests, yt-dlp, pytestCheckHook }: 2 3 buildPythonApplication rec { 4 - pname = "gallery_dl"; 5 - version = "1.23.3"; 6 7 src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "sha256-CoZN0cLXSujZRSGFX3dsNGuvgupa4t1VrEoW+Zu41yw="; 10 }; 11 12 - propagatedBuildInputs = [ requests yt-dlp ]; 13 14 - checkInputs = [ pytestCheckHook ]; 15 16 pytestFlagsArray = [ 17 # requires network access ··· 22 "--ignore=test/test_ytdl.py" 23 ]; 24 25 - pythonImportsCheck = [ "gallery_dl" ]; 26 27 meta = with lib; { 28 description = "Command-line program to download image-galleries and -collections from several image hosting sites";
··· 1 { lib, buildPythonApplication, fetchPypi, requests, yt-dlp, pytestCheckHook }: 2 3 buildPythonApplication rec { 4 + pname = "gallery-dl"; 5 + version = "1.23.4"; 6 + format = "setuptools"; 7 8 src = fetchPypi { 9 + inherit version; 10 + pname = "gallery_dl"; 11 + sha256 = "sha256-IpbV6wWIfRDuljX/Bexo9siFXMezeCRBFK5CzVH0vUU="; 12 }; 13 14 + propagatedBuildInputs = [ 15 + requests 16 + yt-dlp 17 + ]; 18 19 + checkInputs = [ 20 + pytestCheckHook 21 + ]; 22 23 pytestFlagsArray = [ 24 # requires network access ··· 29 "--ignore=test/test_ytdl.py" 30 ]; 31 32 + pythonImportsCheck = [ 33 + "gallery_dl" 34 + ]; 35 36 meta = with lib; { 37 description = "Command-line program to download image-galleries and -collections from several image hosting sites";