nixpkgs/pkgs/development/python-modules/google-cloud-iot/default.nix

43 lines
895 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, grpc_google_iam_v1
, google-api-core
, libcst
, proto-plus
, pytestCheckHook
, pytest-asyncio
, mock
}:
buildPythonPackage rec {
pname = "google-cloud-iot";
version = "2.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "768ccd567b87bf0030f9458d796cc0a846c40825fa2896b77e9cc7a4af30ba2b";
};
propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ];
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
disabledTests = [
# requires credentials
"test_list_device_registries"
];
pythonImportsCheck = [
"google.cloud.iot"
"google.cloud.iot_v1"
];
meta = with lib; {
description = "Cloud IoT API API client library";
homepage = "https://github.com/googleapis/python-iot";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}