auto-editor: 22w25a -> 22w32a

This commit is contained in:
Gabriel Arazas 2022-08-31 12:41:41 +08:00
parent 9c219e667b
commit d95175c588

View File

@ -1,18 +1,24 @@
{ stdenv, lib, fetchFromGitHub, python310Packages }: { stdenv, lib, ffmpeg, fetchFromGitHub, python310Packages }:
python310Packages.buildPythonApplication rec { python310Packages.buildPythonApplication rec {
pname = "auto-editor"; pname = "auto-editor";
version = "22w25a"; version = "22w32a";
doCheck = false; doCheck = false;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "WyattBlue"; owner = "WyattBlue";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-SKlAgGqowFvvenhbFiTWbVLYAB5CChQ+EdPXxsWxNgE="; sha256 = "sha256-VbEr3/8PmV9mShoyv2hsc0rX8RUM39lgVk5HGe5DKYY=";
}; };
postPatch = ''
sed ./setup.py -i -E \
-e "/ae-ffmpeg==1.0.0/d"
'';
propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ]; propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ];
runtimeDependencies = [ ffmpeg ];
meta = with lib; { meta = with lib; {
description = description =