Added frigate 0.13.1
This commit is contained in:
parent
8d47f6b09c
commit
4e7c86505f
8 changed files with 807 additions and 0 deletions
40
onvif-zeep/default.nix
Normal file
40
onvif-zeep/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue