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