download pkg rewrote

This commit is contained in:
Danilo Reyes 2024-12-06 13:33:59 -06:00
parent bf426e9cda
commit 18d55a44cf

View File

@ -17,19 +17,17 @@ python3Packages.buildPythonApplication {
}; };
build-system = [ python3Packages.setuptools ]; build-system = [ python3Packages.setuptools ];
dependencies = dependencies =
let [
pythonDeps = builtins.attrValues { ffmpeg
inherit (python3Packages) gallery-dl
pyyaml (pkgs.callPackage ../../pkgs/webcomix/default.nix { })
types-pyyaml ]
yt-dlp ++ builtins.attrValues {
; inherit (python3Packages)
}; pyyaml
deps = [ types-pyyaml
ffmpeg yt-dlp
gallery-dl ;
(pkgs.callPackage ../../pkgs/webcomix/default.nix { }) };
];
in
pythonDeps ++ deps;
} }