pythonPAckages.google_cloud_securitycenter: init at 0.1.0

This commit is contained in:
Chris Ostrouchov 2018-11-02 16:15:17 -04:00
parent 8810a026c3
commit 50f0fc2862
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 34 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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 { };