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

Changed files
+2 -7
pkgs
development
python-modules
ffmpy
+2 -7
pkgs/development/python-modules/ffmpy/default.nix
···
buildPythonPackage rec {
pname = "ffmpy";
-
version = "0.6.0";
+
version = "0.6.1";
pyproject = true;
disabled = pythonOlder "3.8.1";
···
owner = "Ch00k";
repo = "ffmpy";
tag = version;
-
hash = "sha256-U20mBg+428kkka6NY9qc7X8jH8A5bKa++g2+PTn/MYg=";
+
hash = "sha256-u//L2vxucFlWmk1+pdp+iCrpzzMZUonDAn1LELgX86E=";
};
postPatch =
···
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" ];