567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
68 lines
1.4 KiB
Nix
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,
|
|
pyyaml,
|
|
requests-oauthlib,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-nest-sdm";
|
|
version = "9.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allenporter";
|
|
repo = "python-google-nest-sdm";
|
|
tag = version;
|
|
hash = "sha256-yElmh+ajNVbjhsnNsUtQ3mJw9fvJtXqgS58iow+Nwi8=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
google-auth
|
|
google-auth-oauthlib
|
|
google-cloud-pubsub
|
|
mashumaro
|
|
pyyaml
|
|
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 = {
|
|
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/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "google_nest";
|
|
};
|
|
}
|