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}";
};
build-system = [ python3Packages.setuptools ];
dependencies = builtins.attrValues {
inherit (python3Packages)
pyyaml
types-pyyaml
yt-dlp
;
};
propagatedBuildInputs = [
gallery-dl
ffmpeg
(pkgs.callPackage ../../pkgs/webcomix/default.nix { })
];
dependencies =
let
pythonDeps = builtins.attrValues {
inherit (python3Packages)
pyyaml
types-pyyaml
yt-dlp
;
};
deps = [
ffmpeg
gallery-dl
(pkgs.callPackage ../../pkgs/webcomix/default.nix { })
];
in
pythonDeps ++ deps;
}