2022-03-26 03:09:09 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, python310Packages }:
|
|
|
|
|
2022-06-06 13:55:18 +00:00
|
|
|
python310Packages.buildPythonApplication rec {
|
2022-03-26 03:09:09 +00:00
|
|
|
pname = "auto-editor";
|
2022-07-07 10:38:59 +00:00
|
|
|
version = "22w25a";
|
2022-03-26 03:09:09 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "WyattBlue";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-07-07 10:38:59 +00:00
|
|
|
sha256 = "sha256-SKlAgGqowFvvenhbFiTWbVLYAB5CChQ+EdPXxsWxNgE=";
|
2022-03-26 03:09:09 +00:00
|
|
|
};
|
|
|
|
|
2022-03-28 00:18:15 +00:00
|
|
|
propagatedBuildInputs = with python310Packages;
|
2022-06-06 13:55:18 +00:00
|
|
|
[ numpy yt-dlp av pillow ];
|
2022-03-26 03:09:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2022-03-28 00:18:15 +00:00
|
|
|
description =
|
|
|
|
"Command-line application for automating video and audio editing with a variety of methods";
|
2022-03-26 03:09:09 +00:00
|
|
|
homepage = "https://auto-editor.com/cli";
|
|
|
|
license = licenses.unlicense;
|
|
|
|
};
|
|
|
|
}
|