mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPAckages.google_cloud_securitycenter: init at 0.1.0
This commit is contained in:
parent
8810a026c3
commit
50f0fc2862
2 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, enum34
|
||||
, grpc_google_iam_v1
|
||||
, google_api_core
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-securitycenter";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "6ef386ba065a167670ad1b67f15fb7ba9e21ce33579fa6d7fafafd5b970b3e8a";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest tests/unit
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Cloud Security Command Center API API client library";
|
||||
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -2486,6 +2486,8 @@ in {
|
|||
|
||||
google_cloud_runtimeconfig = callPackage ../development/python-modules/google_cloud_runtimeconfig { };
|
||||
|
||||
google_cloud_securitycenter = callPackage ../development/python-modules/google_cloud_securitycenter { };
|
||||
|
||||
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
|
||||
|
||||
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
|
||||
|
|
Loading…
Reference in a new issue