Unverified Commit 80b5bba1 authored by Pavol Rusnak's avatar Pavol Rusnak Committed by GitHub
Browse files

ffmpeg-normalize: 1.26.1 -> 1.28.3 (#337903)

parents 9acab11f b4e7edc9
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ lib
, buildPythonApplication
, fetchPypi
, ffmpeg
, ffmpeg-progress-yield
{
  lib,
  python3Packages,
  fetchPypi,
  ffmpeg,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "ffmpeg-normalize";
  version = "1.26.1";
  version = "1.28.3";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-OwREpfWaP0tdAjMGjGpVIAQn8rlTTjSfT+0t5g/2yjQ=";
    hash = "sha256-8wNPuVRQRQpFK6opgwqdKYMYmAFRqq8p/T5V9kC8QaY=";
  };

  propagatedBuildInputs = [ ffmpeg ffmpeg-progress-yield ];
  propagatedBuildInputs = [
    ffmpeg
    python3Packages.ffmpeg-progress-yield
  ];
  dependencies = with python3Packages; [ colorlog ];

  checkPhase = ''
    $out/bin/ffmpeg-normalize --help > /dev/null
  '';

  meta = with lib; {
  meta = {
    description = "Normalize audio via ffmpeg";
    homepage = "https://github.com/slhck/ffmpeg-normalize";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ prusnak ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      luftmensch-luftmensch
      prusnak
    ];
    mainProgram = "ffmpeg-normalize";
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -20001,8 +20001,6 @@ with pkgs;
  ffmpegthumbnailer = callPackage ../development/libraries/ffmpegthumbnailer { };
  ffmpeg-normalize = python3Packages.callPackage ../applications/video/ffmpeg-normalize { };
  ffms = callPackage ../development/libraries/ffms { };
  fftw = callPackage ../development/libraries/fftw { };