diff --git a/pkgs/auto-editor.nix b/pkgs/auto-editor.nix index 897b5c27..c61965a8 100644 --- a/pkgs/auto-editor.nix +++ b/pkgs/auto-editor.nix @@ -2,20 +2,16 @@ python310Packages.buildPythonApplication rec { pname = "auto-editor"; - version = "22w22a"; + version = "22w25a"; doCheck = false; src = fetchFromGitHub { owner = "WyattBlue"; repo = pname; rev = version; - sha256 = "sha256-SSdiBLyijed4bRqI4Y4vJ4HetNTGQgDMnXmbLRNspL0="; + sha256 = "sha256-SKlAgGqowFvvenhbFiTWbVLYAB5CChQ+EdPXxsWxNgE="; }; - postPatch = '' - substituteInPlace ./setup.py --replace "pillow==9.1.1" "pillow==9.1.0" - ''; - propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ];