From 50d87430bfed53c6d939bcf24eac3d2a09f6408a Mon Sep 17 00:00:00 2001
From: Gabriel Arazas <foo.dogsquared@gmail.com>
Date: Sat, 17 Sep 2022 22:21:52 +0800
Subject: [PATCH] auto-editor: 22w32a -> 22w35c

---
 pkgs/auto-editor.nix | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pkgs/auto-editor.nix b/pkgs/auto-editor.nix
index cc7861a6..bb164e62 100644
--- a/pkgs/auto-editor.nix
+++ b/pkgs/auto-editor.nix
@@ -2,19 +2,19 @@
 
 python310Packages.buildPythonApplication rec {
   pname = "auto-editor";
-  version = "22w32a";
+  version = "22w35c";
   doCheck = false;
 
   src = fetchFromGitHub {
     owner = "WyattBlue";
     repo = pname;
     rev = version;
-    sha256 = "sha256-VbEr3/8PmV9mShoyv2hsc0rX8RUM39lgVk5HGe5DKYY=";
+    sha256 = "sha256-Vgia61kswKJhqd906Y3x+ddxvM1BZDdKdG9VBiUaafg=";
   };
 
   postPatch = ''
     sed ./setup.py -i -E \
-      -e "/ae-ffmpeg==1.0.0/d"
+      -e "/ae-ffmpeg/d"
   '';
 
   propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ];