lol

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

python310Packages.ffmpeg-progress-yield: 0.7.0 -> 0.7.1

authored by

Fabian Affolter and committed by
GitHub
736c2dfa 75a2a4a3

+6 -2
+6 -2
pkgs/development/python-modules/ffmpeg-progress-yield/default.nix
··· 4 4 , colorama 5 5 , tqdm 6 6 , pytestCheckHook 7 + , pythonOlder 7 8 , ffmpeg 8 9 , procps 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "ffmpeg-progress-yield"; 13 - version = "0.7.0"; 14 + version = "0.7.1"; 14 15 format = "setuptools"; 15 16 17 + disabled = pythonOlder "3.8"; 18 + 16 19 src = fetchPypi { 17 20 inherit pname version; 18 - hash = "sha256-rt+Qg1H9t5PC4cyis9xuyf8myfxWLkTq3aD83+O4qmA="; 21 + hash = "sha256-wK33h+Qg737hSv+2HF4hvfBDDsJpI+7mGbRgUQvrZb0="; 19 22 }; 20 23 21 24 propagatedBuildInputs = [ colorama tqdm ]; ··· 34 37 meta = with lib; { 35 38 description = "Run an ffmpeg command with progress"; 36 39 homepage = "https://github.com/slhck/ffmpeg-progress-yield"; 40 + changelog = "https://github.com/slhck/ffmpeg-progress-yield/blob/v${version}/CHANGELOG.md"; 37 41 license = with licenses; [ mit ]; 38 42 maintainers = with maintainers; [ prusnak ]; 39 43 };