gallery-dl: add youtube-dl as dependency

+2 -2
+2 -2
pkgs/applications/misc/gallery-dl/default.nix
··· 1 - { lib, buildPythonApplication, fetchPypi, requests, pytestCheckHook }: 1 + { lib, buildPythonApplication, fetchPypi, requests, youtube-dl, pytestCheckHook }: 2 2 3 3 buildPythonApplication rec { 4 4 pname = "gallery_dl"; ··· 9 9 sha256 = "7fec9ac69582dbd9922666e6ece3142ae52dc9679a2c4a613f6ee94ad09e5f68"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ requests ]; 12 + propagatedBuildInputs = [ requests youtube-dl ]; 13 13 14 14 checkInputs = [ pytestCheckHook ]; 15 15 pytestFlagsArray = [