forked from mirrors/nixpkgs
44 lines
731 B
Nix
44 lines
731 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, pythonOlder
|
||
|
, fetchPypi
|
||
|
, pkg-config
|
||
|
, ffmpeg
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ha-av";
|
||
|
version = "8.0.4rc1";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.5";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-txdi2/X6upqrACeHhHpEh4tGqgPpW/dyWda8y++7c3M=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
ffmpeg
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"av"
|
||
|
"av._core"
|
||
|
];
|
||
|
|
||
|
# tests fail to import av._core
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://pypi.org/project/ha-av/";
|
||
|
description = "Pythonic bindings for FFmpeg's libraries";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|