Unverified Commit 47a647c7 authored by Tom Hunze's avatar Tom Hunze
Browse files

python313Packages.ffmpeg-progress-yield: refactor

parent f75df2fe
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -48,12 +48,12 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "ffmpeg_progress_yield" ];

  meta = with lib; {
  meta = {
    description = "Run an ffmpeg command with progress";
    mainProgram = "ffmpeg-progress-yield";
    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 ];
    changelog = "https://github.com/slhck/ffmpeg-progress-yield/blob/${src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ prusnak ];
  };
}