From d29c0b875ad2b5991efbb6617da22cc54a88a3e1 Mon Sep 17 00:00:00 2001 From: Benjamin Sparks Date: Thu, 21 Aug 2025 23:24:33 +0200 Subject: [PATCH] python3Packages.ffmpy: 0.6.0 -> 0.6.1 https://github.com/Ch00k/ffmpy/commit/8bc9ffcd478a169171c240581e61ee47de333586 matches our internal patch precisely, which is the only change between these two versions, so we can easily remove it and bump the package Diff: https://github.com/Ch00k/ffmpy/compare/0.6.0...0.6.1 --- pkgs/development/python-modules/ffmpy/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/ffmpy/default.nix b/pkgs/development/python-modules/ffmpy/default.nix index 884899fc994e..a576b37cd48f 100644 --- a/pkgs/development/python-modules/ffmpy/default.nix +++ b/pkgs/development/python-modules/ffmpy/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "ffmpy"; - version = "0.6.0"; + version = "0.6.1"; pyproject = true; disabled = pythonOlder "3.8.1"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "Ch00k"; repo = "ffmpy"; tag = version; - hash = "sha256-U20mBg+428kkka6NY9qc7X8jH8A5bKa++g2+PTn/MYg="; + hash = "sha256-u//L2vxucFlWmk1+pdp+iCrpzzMZUonDAn1LELgX86E="; }; postPatch = @@ -37,11 +37,6 @@ buildPythonPackage rec { for fname in tests/*.py; do echo >>"$fname" 'FFmpeg.__init__.__defaults__ = ("ffmpeg", *FFmpeg.__init__.__defaults__[1:])' done - '' - # uv-build in nixpkgs is now at 0.8.0, which otherwise breaks the constraint set by the package. - + '' - substituteInPlace pyproject.toml \ - --replace-fail 'requires = ["uv_build>=0.7.9,<0.8.0"]' 'requires = ["uv_build>=0.7.9,<0.9.0"]' ''; pythonImportsCheck = [ "ffmpy" ];