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

48 lines
942 B
Nix

{ 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.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "97a46d2318f00c1c6ae1a4ab587e338677c5cc1651d7c6304982d74fa364dd9d";
};
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 ];
};
}