python3Packages.ha-av: drop
Home Assistant migrated back to PyAV and left ha-av unmaintained.
This commit is contained in:
parent
98df8103d2
commit
5800217e89
3 changed files with 1 additions and 45 deletions
|
@ -1,43 +0,0 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, pkg-config
|
||||
, ffmpeg_4
|
||||
}:
|
||||
|
||||
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_4
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -66,6 +66,7 @@ mapAliases ({
|
|||
google_api_python_client = google-api-python-client; # added 2021-03-19
|
||||
googleapis_common_protos = googleapis-common-protos; # added 2021-03-19
|
||||
grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21
|
||||
ha-av = throw "ha-av was removed, because it is no longer maintained"; # added 2022-04-06
|
||||
HAP-python = hap-python; # added 2021-06-01
|
||||
hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07
|
||||
hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
||||
|
|
|
@ -3705,8 +3705,6 @@ 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 a new issue