pythonPackages.google_cloud_spanner: init at 1.6.0

This commit is contained in:
Chris Ostrouchov 2018-11-02 16:22:03 -04:00
parent b7c7eea740
commit 226cde0476
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, grpc_google_iam_v1
, grpcio-gcp
, google_api_core
, google_cloud_core
, pytest
, mock
}:
buildPythonPackage rec {
pname = "google-cloud-spanner";
version = "1.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "f7140e1cb43fbf670521112f03822b63d15fbcbd2830c7cfa1b868836e04b6b4";
};
checkInputs = [ pytest mock ];
propagatedBuildInputs = [ grpcio-gcp grpc_google_iam_v1 google_api_core google_cloud_core ];
checkPhase = ''
pytest tests/unit
'';
meta = with stdenv.lib; {
description = "Cloud Spanner API client library";
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2488,6 +2488,8 @@ in {
google_cloud_securitycenter = callPackage ../development/python-modules/google_cloud_securitycenter { };
google_cloud_spanner = callPackage ../development/python-modules/google_cloud_spanner { };
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };