{ lib , buildPythonApplication , fetchPypi , ffmpeg , ffmpeg-progress-yield }: buildPythonApplication rec { pname = "ffmpeg-normalize"; version = "1.22.5"; src = fetchPypi { inherit pname version; sha256 = "20250fc28ce04636580577b2864e54e6bea9daf68e2d8afaeb78e131b182cd28"; }; propagatedBuildInputs = [ ffmpeg ffmpeg-progress-yield ]; checkPhase = '' $out/bin/ffmpeg-normalize --help > /dev/null ''; meta = with lib; { description = "Normalize audio via ffmpeg"; homepage = "https://github.com/slhck/ffmpeg-normalize"; license = with licenses; [ mit ]; maintainers = with maintainers; [ prusnak ]; }; }