pythonPackages.google_cloud_tasks: init at 0.3.0

This commit is contained in:
Chris Ostrouchov 2018-11-02 16:26:30 -04:00
parent e856f40f18
commit 334a2d7baf
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-tasks";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "f874a7aabad225588263c6cbcd4d67455cc682ebb6d9f00bd06c8d2d5673b4db";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
checkPhase = ''
pytest tests/unit
'';
meta = with stdenv.lib; {
description = "Cloud Tasks API API client library";
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2494,6 +2494,8 @@ in {
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
google_cloud_tasks = callPackage ../development/python-modules/google_cloud_tasks { };
google_cloud_testutils = callPackage ../development/python-modules/google_cloud_testutils { };
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };