python3Packages.google_cloud_spanner: 1.13.0 -> 1.15.0, fix tests

This commit is contained in:
Jonathan Ringer 2020-03-18 14:38:13 -07:00 committed by Jon
parent 7979557ab1
commit e87db4ac75

View File

@ -11,23 +11,25 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-spanner"; pname = "google-cloud-spanner";
version = "1.13.0"; version = "1.15.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "eafa09cc344339a23702ee74eac5713974fefafdfd56afb589bd25548c79c80d"; sha256 = "1ra1cim9kcs680yrhvfn5hjx8y1sccp3lw7id5j5pj53sshdng8h";
}; };
checkInputs = [ pytest mock ]; checkInputs = [ pytest mock ];
propagatedBuildInputs = [ grpcio-gcp grpc_google_iam_v1 google_api_core google_cloud_core ]; propagatedBuildInputs = [ grpcio-gcp grpc_google_iam_v1 google_api_core google_cloud_core ];
# avoid importing local package
checkPhase = '' checkPhase = ''
rm -r google
pytest tests/unit pytest tests/unit
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Cloud Spanner API client library"; description = "Cloud Spanner API client library";
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python; homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.costrouc ]; maintainers = [ maintainers.costrouc ];
}; };