51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
ciso8601,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
yarl,
|
|
zeep,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "onvif-zeep-async";
|
|
version = "4.0.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openvideolibs";
|
|
repo = "python-onvif-zeep-async";
|
|
tag = "v${version}";
|
|
hash = "sha256-xffbMz8NZpazLw3uRPMNv5i23yk6RmOBCgE1gSj9d7A=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
ciso8601
|
|
yarl
|
|
zeep
|
|
]
|
|
++ zeep.optional-dependencies.async;
|
|
|
|
pythonImportsCheck = [ "onvif" ];
|
|
|
|
# Tests are not shipped
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "ONVIF Client Implementation in Python";
|
|
homepage = "https://github.com/hunterjm/python-onvif-zeep-async";
|
|
changelog = "https://github.com/openvideolibs/python-onvif-zeep-async/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "onvif-cli";
|
|
};
|
|
}
|