13 buildPythonPackage rec {
14 pname = "ffmpeg-progress-yield";
16 format = "setuptools";
18 disabled = pythonOlder "3.8";
21 inherit pname version;
22 hash = "sha256-n6zHi6M9SyrNm8MhQ9xvBo2OIzoQYJ4yhgujW5C6QWY=";
25 propagatedBuildInputs = [
38 "test_quit_gracefully"
41 pytestFlagsArray = [ "test/test.py" ];
43 pythonImportsCheck = [ "ffmpeg_progress_yield" ];
46 description = "Run an ffmpeg command with progress";
47 mainProgram = "ffmpeg-progress-yield";
48 homepage = "https://github.com/slhck/ffmpeg-progress-yield";
49 changelog = "https://github.com/slhck/ffmpeg-progress-yield/blob/v${version}/CHANGELOG.md";
50 license = with licenses; [ mit ];
51 maintainers = with maintainers; [ prusnak ];