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

This commit is contained in:
Roshan Kumar 2024-07-17 13:51:42 +05:30 committed by GitHub
parent 78bb273d30
commit 16af52ed24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{
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 ];
};
}

View File

@ -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 { };