depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-kms/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

40 lines
914 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, grpc-google-iam-v1
, google-api-core
, libcst
, mock
, proto-plus
, pytest-asyncio
}:
buildPythonPackage rec {
pname = "google-cloud-kms";
version = "2.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-8JOa8HzYGJq1lrPXCWRvspXpopEK+qf5av7kmKbFIrQ=";
};
propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
# Disable tests that need credentials
disabledTests = [ "test_list_global_key_rings" ];
pythonImportsCheck = [
"google.cloud.kms"
"google.cloud.kms_v1"
];
meta = with lib; {
description = "Cloud Key Management Service (KMS) API API client library";
homepage = "https://github.com/googleapis/python-kms";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}