python312Packages.python-ffmpeg: init at 2.0.12 (#320185)
This commit is contained in:
parent
78bb273d30
commit
16af52ed24
30
pkgs/development/python-modules/python-ffmpeg/default.nix
Normal file
30
pkgs/development/python-modules/python-ffmpeg/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user