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