From d95175c5889d947b680544b2f98e1c9929e721fd Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 31 Aug 2022 12:41:41 +0800 Subject: [PATCH] auto-editor: 22w25a -> 22w32a --- pkgs/auto-editor.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/auto-editor.nix b/pkgs/auto-editor.nix index 62665d84..cc7861a6 100644 --- a/pkgs/auto-editor.nix +++ b/pkgs/auto-editor.nix @@ -1,18 +1,24 @@ -{ stdenv, lib, fetchFromGitHub, python310Packages }: +{ stdenv, lib, ffmpeg, fetchFromGitHub, python310Packages }: python310Packages.buildPythonApplication rec { pname = "auto-editor"; - version = "22w25a"; + version = "22w32a"; doCheck = false; src = fetchFromGitHub { owner = "WyattBlue"; repo = pname; 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 ]; + runtimeDependencies = [ ffmpeg ]; meta = with lib; { description =