google_cloud_core: init at 0.28.0

This commit is contained in:
Klaas van Schelven 2017-12-20 23:48:57 +01:00
parent 1672631932
commit 32e9d32be5
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi
, google_api_core, grpcio, pytest, mock }:
buildPythonPackage rec {
pname = "google-cloud-core";
version = "0.28.0";
src = fetchPypi {
inherit pname version;
sha256 = "1h8bx99ksla48zkb7bhkqy66b8prg49dp15alh851vzi9ii2zii7";
};
propagatedBuildInputs = [ google_api_core grpcio ];
checkInputs = [ pytest mock ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
description = "API Client library for Google Cloud: Core Helpers";
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
license = licenses.asl20;
maintainers = with maintainers; [ vanschelven ];
};
}

View File

@ -9099,6 +9099,8 @@ in {
google_auth = callPackage ../development/python-modules/google_auth { };
google_cloud_core = callPackage ../development/python-modules/google_cloud_core { };
grammalecte = callPackage ../development/python-modules/grammalecte { };
greenlet = buildPythonPackage rec {