diff --git a/pkgs/development/python-modules/google-nest-sdm/default.nix b/pkgs/development/python-modules/google-nest-sdm/default.nix index e30c7b93bf22..cf9dec089924 100644 --- a/pkgs/development/python-modules/google-nest-sdm/default.nix +++ b/pkgs/development/python-modules/google-nest-sdm/default.nix @@ -12,22 +12,23 @@ pytest-asyncio, pytestCheckHook, pythonOlder, + pyyaml, requests-oauthlib, setuptools, }: buildPythonPackage rec { pname = "google-nest-sdm"; - version = "7.1.3"; + version = "7.1.4"; pyproject = true; - disabled = pythonOlder "3.10"; + disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "allenporter"; repo = "python-google-nest-sdm"; tag = version; - hash = "sha256-iVdFl90nP2U5KGqFPvS7qHgSUQjlKnbfZTLq42y/Mrc="; + hash = "sha256-wE28+GqZGIhg/+JOnyn2hXw5ia0yg3RLywb1PqgkXw0="; }; build-system = [ setuptools ]; @@ -38,6 +39,7 @@ buildPythonPackage rec { google-auth-oauthlib google-cloud-pubsub mashumaro + pyyaml requests-oauthlib ]; @@ -55,8 +57,6 @@ buildPythonPackage rec { disabledTests = [ "test_clip_preview_transcode" "test_event_manager_event_expiration_with_transcode" - # AssertionError: assert '12345' == 12345 - "test_info_traits_type_error" ]; meta = with lib; {