Unverified Commit 16af52ed authored by Roshan Kumar's avatar Roshan Kumar Committed by GitHub
Browse files

python312Packages.python-ffmpeg: init at 2.0.12 (#320185)

parent 78bb273d
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pyee,
  fetchPypi,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "python_ffmpeg";
  version = "2.0.12";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "GayAr1oGSi9TwkWvGpCbLXZI6gRVANltO81Qe4jUPcc=";
  };

  propagatedBuildInputs = [ pyee ];

  nativeBuildInputs = [ setuptools-scm ];
  pythonImportCheck = [ "ffmpeg" ];

  meta = {
    homepage = "https://github.com/jonghwanhyeon/python-ffmpeg";
    description = "Python binding for FFmpeg which provides sync and async APIs";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ roshaen ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10306,6 +10306,8 @@ self: super: with self; {
  python-ecobee-api = callPackage ../development/python-modules/python-ecobee-api { };
  python-ffmpeg = callPackage ../development/python-modules/python-ffmpeg { };
  python-flirt = callPackage ../development/python-modules/python-flirt { };
  python-fullykiosk = callPackage ../development/python-modules/python-fullykiosk { };