first flake output test
This commit is contained in:
17
pkgs/download.nix
Normal file
17
pkgs/download.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user