google-cloud-iot: fix derivation (#353138)

authored by scrumplex.net and committed by GitHub aa9dd15d 9cafbc1c

+9
+9
pkgs/development/python-modules/google-cloud-iot/default.nix
··· 39 39 pytestCheckHook 40 40 ]; 41 41 42 + # including_default_value_fields was deprecated, the new version is called 43 + # always_print_fields_with_no_presence 44 + postPatch = '' 45 + substituteInPlace "tests/unit/gapic/iot_v1/test_device_manager.py" \ 46 + --replace-fail "including_default_value_fields" "always_print_fields_with_no_presence" 47 + substituteInPlace "google/cloud/iot_v1/services/device_manager/transports/rest.py" \ 48 + --replace-fail "including_default_value_fields" "always_print_fields_with_no_presence" 49 + ''; 50 + 42 51 disabledTests = [ 43 52 # requires credentials 44 53 "test_list_device_registries"