Unverified Commit 736c2dfa authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.ffmpeg-progress-yield: 0.7.0 -> 0.7.1
parents 75a2a4a3 35260272
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -4,18 +4,21 @@
, colorama
, tqdm
, pytestCheckHook
, pythonOlder
, ffmpeg
, procps
}:

buildPythonPackage rec {
  pname = "ffmpeg-progress-yield";
  version = "0.7.0";
  version = "0.7.1";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-rt+Qg1H9t5PC4cyis9xuyf8myfxWLkTq3aD83+O4qmA=";
    hash = "sha256-wK33h+Qg737hSv+2HF4hvfBDDsJpI+7mGbRgUQvrZb0=";
  };

  propagatedBuildInputs = [ colorama tqdm ];
@@ -34,6 +37,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Run an ffmpeg command with progress";
    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 ];
  };