18 lines
352 B
Nix
18 lines
352 B
Nix
{ pkgs, ... }:
|
|
with pkgs;
|
|
python3Packages.buildPythonApplication {
|
|
pname = "download";
|
|
version = "2.6";
|
|
src = ../nix/download/.;
|
|
build-system = with python3Packages; [ setuptools ];
|
|
dependencies = with python3Packages; [
|
|
pyyaml
|
|
types-pyyaml
|
|
];
|
|
propagatedBuildInputs = [
|
|
gallery-dl
|
|
ffmpeg
|
|
python3Packages.yt-dlp
|
|
];
|
|
}
|