Added frigate 0.13.1

This commit is contained in:
fleaz 2024-02-04 16:41:14 +01:00
parent 8d47f6b09c
commit 4e7c86505f
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
8 changed files with 807 additions and 0 deletions

40
onvif-zeep/default.nix Normal file
View file

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, zeep
}:
buildPythonPackage rec {
pname = "onvif-zeep";
version = "0.2.12";
pyproject = true;
src = fetchPypi {
pname = "onvif_zeep";
inherit version;
hash = "sha256-qou8Aqc+qlCJSwwY45+o0xilg6ZkxlvzWzyAKdHEC0k=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
zeep
];
pythonImportsCheck = [
"onvif"
];
# Tests require hardware
doCheck = false;
meta = with lib; {
description = "Python Client for ONVIF Camera";
homepage = "https://github.com/quatanium/python-onvif";
license = licenses.mit;
maintainers = with maintainers; [ fleaz ];
};
}