reordered dependencies for download
This commit is contained in:
parent
dc61c454d5
commit
fb8d93e562
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user