python3Packages.google-nest-sdm: 1.6.0 -> 1.7.0

This commit is contained in:
Fabian Affolter
2022-02-09 08:57:20 +01:00
committed by Jonathan Ringer
parent 5fe1d1c1ba
commit 3bf56677f3
@@ -16,7 +16,7 @@
buildPythonPackage rec {
pname = "google-nest-sdm";
version = "1.6.0";
version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "allenporter";
repo = "python-google-nest-sdm";
rev = version;
sha256 = "sha256-qgowVCsSNa+Gt+fWnR1eMfkbtpZD7DS4ALZYz6KZZTM=";
sha256 = "sha256-SDxYPncC/VVTbI4Ka/mgcVfU1KUNRXVvQl78LCoD/RQ=";
};
propagatedBuildInputs = [
@@ -44,17 +44,17 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace tests/event_media_test.py \
--replace "/bin/echo" "${coreutils}/bin/echo"
'';
pythonImportsCheck = [
"google_nest_sdm"
];
disabledTests = [
"test_clip_preview_transcode"
"test_event_manager_event_expiration_with_transcode"
];
meta = with lib; {
description = "Python module for Google Nest Device Access using the Smart Device Management API";
description = "Module for Google Nest Device Access using the Smart Device Management API";
homepage = "https://github.com/allenporter/python-google-nest-sdm";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];