Merge pull request #299889 from r-ryantm/auto-update/python312Packages.google-nest-sdm

python312Packages.google-nest-sdm: 3.0.3 -> 3.0.4
This commit is contained in:
Nick Cao 2024-03-29 10:35:33 -04:00 committed by GitHub
commit 7da035bba2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 5 deletions

View File

@ -12,12 +12,13 @@
, pytestCheckHook
, pythonOlder
, requests-oauthlib
, setuptools
}:
buildPythonPackage rec {
pname = "google-nest-sdm";
version = "3.0.3";
format = "setuptools";
version = "3.0.4";
pyproject = true;
disabled = pythonOlder "3.10";
@ -25,10 +26,14 @@ buildPythonPackage rec {
owner = "allenporter";
repo = "python-google-nest-sdm";
rev = "refs/tags/${version}";
hash = "sha256-VO/TY/QBzVFxqIumVJjw+Ic0hrqkRBS+7wQKBhcN9Jw=";
hash = "sha256-zYHrS9y15dcyDhOoky7sB2BYkpTL3PoyNbNewKKl19E=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
aiohttp
google-auth
google-auth-oauthlib
@ -57,10 +62,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module for Google Nest Device Access using the Smart Device Management API";
mainProgram = "google_nest";
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";
};
}