2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, google-auth
|
|
, google-auth-oauthlib
|
|
, google-cloud-pubsub
|
|
, pydantic
|
|
, pytest-aiohttp
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests-oauthlib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-nest-sdm";
|
|
version = "3.0.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allenporter";
|
|
repo = "python-google-nest-sdm";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-VO/TY/QBzVFxqIumVJjw+Ic0hrqkRBS+7wQKBhcN9Jw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
google-auth
|
|
google-auth-oauthlib
|
|
google-cloud-pubsub
|
|
pydantic
|
|
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 ];
|
|
};
|
|
}
|