depot/third_party/nixpkgs/pkgs/development/python-modules/reolink-aio/default.nix

51 lines
1,023 B
Nix
Raw Normal View History

{
lib,
aiohttp,
aiortsp,
buildPythonPackage,
fetchFromGitHub,
orjson,
pycryptodomex,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "reolink-aio";
version = "0.10.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "starkillerOG";
repo = "reolink_aio";
rev = "refs/tags/${version}";
hash = "sha256-SuNY+H21rjO+iotDJymLI7JccQRoMnLX/YL05wQqlmc=";
};
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 ];
};
}