Merge pull request #218564 from r-ryantm/auto-update/python310Packages.ffmpeg-progress-yield

python310Packages.ffmpeg-progress-yield: 0.7.0 -> 0.7.1
This commit is contained in:
Fabian Affolter
2023-02-27 09:13:12 +01:00
committed by GitHub
@@ -4,18 +4,21 @@
, colorama
, tqdm
, pytestCheckHook
, pythonOlder
, ffmpeg
, procps
}:
buildPythonPackage rec {
pname = "ffmpeg-progress-yield";
version = "0.7.0";
version = "0.7.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-rt+Qg1H9t5PC4cyis9xuyf8myfxWLkTq3aD83+O4qmA=";
hash = "sha256-wK33h+Qg737hSv+2HF4hvfBDDsJpI+7mGbRgUQvrZb0=";
};
propagatedBuildInputs = [ colorama tqdm ];
@@ -34,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Run an ffmpeg command with progress";
homepage = "https://github.com/slhck/ffmpeg-progress-yield";
changelog = "https://github.com/slhck/ffmpeg-progress-yield/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ prusnak ];
};