depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-iam-logging/default.nix
Default email 77976348d2 Project import generated by Copybara.
GitOrigin-RevId: 9aeeb7574fb784eaf6395f4400705b5f619e6cc3
2021-10-17 05:12:59 +03:00

45 lines
856 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, google-api-core
, grpc-google-iam-v1
, mock
, proto-plus
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-iam-logging";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "3d4fb605d2611586a66d16d02803fcb306331f21351b16497ee8c40753be3a27";
};
propagatedBuildInputs = [
google-api-core
grpc-google-iam-v1
proto-plus
];
checkInputs = [
mock
pytestCheckHook
pytest-asyncio
];
pythonImportsCheck = [
"google.cloud.iam_logging"
"google.cloud.iam_logging_v1"
];
meta = with lib; {
description = "IAM Service Logging client library";
homepage = "https://github.com/googleapis/python-iam-logging";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}