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