google-cloud-secret-manager: init at 1.0.0
Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
This commit is contained in:
parent
3a0933a030
commit
8c74f97c15
@ -0,0 +1,34 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, grpc_google_iam_v1, google_api_core
|
||||
, pytest, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-secret-manager";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1cm3xqacxnbpv2706bd2jl86mvcsphpjlvhzngz2k2p48a0jjx8r";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
google_api_core
|
||||
grpc_google_iam_v1
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
mock
|
||||
pytest
|
||||
];
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Secret Manager API: Stores, manages, and secures access to application secrets";
|
||||
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ siriobalmelli ];
|
||||
};
|
||||
}
|
@ -4049,6 +4049,8 @@ in {
|
||||
|
||||
google_cloud_runtimeconfig = callPackage ../development/python-modules/google_cloud_runtimeconfig { };
|
||||
|
||||
google_cloud_secret_manager = callPackage ../development/python-modules/google_cloud_secret_manager { };
|
||||
|
||||
google_cloud_securitycenter = callPackage ../development/python-modules/google_cloud_securitycenter { };
|
||||
|
||||
google_cloud_spanner = callPackage ../development/python-modules/google_cloud_spanner { };
|
||||
|
Loading…
Reference in New Issue
Block a user