{ lib , buildPythonPackage , fetchPypi , google-api-core , grpc-google-iam-v1 , libcst , mock , proto-plus , pytestCheckHook , pytest-asyncio }: buildPythonPackage rec { pname = "google-cloud-secret-manager"; version = "2.9.2"; src = fetchPypi { inherit pname version; sha256 = "sha256-W93SDJR8bUPQX9KzoZ6YvV9kU+Twd9huH09Smap481g="; }; propagatedBuildInputs = [ google-api-core grpc-google-iam-v1 libcst proto-plus ]; checkInputs = [ mock pytestCheckHook pytest-asyncio ]; pythonImportsCheck = [ "google.cloud.secretmanager" "google.cloud.secretmanager_v1" "google.cloud.secretmanager_v1beta1" ]; meta = with lib; { description = "Secret Manager API API client library"; homepage = "https://github.com/googleapis/python-secret-manager"; license = licenses.asl20; maintainers = with maintainers; [ siriobalmelli SuperSandro2000 ]; }; }