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