depot/third_party/nixpkgs/pkgs/development/python-modules/google-nest-sdm/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

68 lines
1.4 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
coreutils,
fetchFromGitHub,
google-auth,
google-auth-oauthlib,
google-cloud-pubsub,
mashumaro,
pytest-aiohttp,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
requests-oauthlib,
setuptools,
}:
buildPythonPackage rec {
pname = "google-nest-sdm";
version = "4.0.5";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "allenporter";
repo = "python-google-nest-sdm";
rev = "refs/tags/${version}";
hash = "sha256-SA2PlHiqvvbXmCg0WqehLDiIGEMDbzwbzbCX1klMHis=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
google-auth
google-auth-oauthlib
google-cloud-pubsub
mashumaro
requests-oauthlib
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
coreutils
pytest-aiohttp
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "google_nest_sdm" ];
disabledTests = [
"test_clip_preview_transcode"
"test_event_manager_event_expiration_with_transcode"
];
meta = with lib; {
description = "Module for Google Nest Device Access using the Smart Device Management API";
homepage = "https://github.com/allenporter/python-google-nest-sdm";
changelog = "https://github.com/allenporter/python-google-nest-sdm/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
mainProgram = "google_nest";
};
}