reordered dependencies for download

This commit is contained in:
Danilo Reyes 2024-12-02 23:15:00 -06:00
parent dc61c454d5
commit fb8d93e562

View File

@ -16,16 +16,20 @@ python3Packages.buildPythonApplication {
name = "${pname}-${version}"; name = "${pname}-${version}";
}; };
build-system = [ python3Packages.setuptools ]; build-system = [ python3Packages.setuptools ];
dependencies = builtins.attrValues { dependencies =
let
pythonDeps = builtins.attrValues {
inherit (python3Packages) inherit (python3Packages)
pyyaml pyyaml
types-pyyaml types-pyyaml
yt-dlp yt-dlp
; ;
}; };
propagatedBuildInputs = [ deps = [
gallery-dl
ffmpeg ffmpeg
gallery-dl
(pkgs.callPackage ../../pkgs/webcomix/default.nix { }) (pkgs.callPackage ../../pkgs/webcomix/default.nix { })
]; ];
in
pythonDeps ++ deps;
} }