python3Packages.ha-av: init at 8.0.4rc1
This commit is contained in:
parent
37e57c37f5
commit
9737285976
46
pkgs/development/python-modules/ha-av/default.nix
Normal file
46
pkgs/development/python-modules/ha-av/default.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, pkg-config
|
||||
, ffmpeg
|
||||
, numpy
|
||||
, pytestCheckHook
|
||||
, python
|
||||
}:
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -3428,6 +3428,8 @@ in {
|
||||
|
||||
hdate = callPackage ../development/python-modules/hdate { };
|
||||
|
||||
ha-av = callPackage ../development/python-modules/ha-av { };
|
||||
|
||||
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
|
||||
|
||||
ha-philipsjs = callPackage ../development/python-modules/ha-philipsjs{ };
|
||||
|
Loading…
Reference in New Issue
Block a user