{ lib, aiohttp, aiortsp, buildPythonPackage, fetchFromGitHub, orjson, pycryptodomex, pythonOlder, setuptools, typing-extensions, }: buildPythonPackage rec { pname = "reolink-aio"; version = "0.11.0b1"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "starkillerOG"; repo = "reolink_aio"; rev = "refs/tags/${version}"; hash = "sha256-kLrdhwIUdmZh08I7XOHT2ciiVn8JE9lcfVcMJf05bkk="; }; build-system = [ setuptools ]; dependencies = [ aiohttp aiortsp orjson pycryptodomex typing-extensions ]; pythonImportsCheck = [ "reolink_aio" ]; # All tests require a network device doCheck = false; meta = with lib; { description = "Module to interact with the Reolink IP camera API"; homepage = "https://github.com/starkillerOG/reolink_aio"; changelog = "https://github.com/starkillerOG/reolink_aio/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }