pythonPackages.google_cloud_monitoring: init at 0.30.1

This commit is contained in:
Chris Ostrouchov 2018-11-02 15:48:41 -04:00
parent d3609a0610
commit 1e85f64bc2
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
, google_api_core
, pandas
, pytest
, mock
}:
buildPythonPackage rec {
pname = "google-cloud-monitoring";
version = "0.30.1";
src = fetchPypi {
inherit pname version;
sha256 = "6b26d659360306d51b9fb88c5b1eb77bf49967a37b6348ae9568c083e466274d";
};
checkInputs = [ pytest mock ];
propagatedBuildInputs = [ google_api_core pandas ];
checkPhase = ''
pytest tests/unit
'';
meta = with stdenv.lib; {
description = "Stackdriver Monitoring API client library";
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2476,6 +2476,8 @@ in {
google_cloud_logging = callPackage ../development/python-modules/google_cloud_logging { };
google_cloud_monitoring = callPackage ../development/python-modules/google_cloud_monitoring { };
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };