python3Packages.google_cloud_bigtable: 1.2.0 -> 1.2.1, fix tests

This commit is contained in:
Jonathan Ringer 2020-03-18 15:19:27 -07:00 committed by Jon
parent a802cc30ef
commit be23d2fac0
1 changed files with 5 additions and 4 deletions

View File

@ -10,23 +10,24 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-bigtable"; pname = "google-cloud-bigtable";
version = "1.2.0"; version = "1.2.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "eea9d4aca54499b555a893fa441deac1bd7ae9cbc8e03bdd681fd33fad72e170"; sha256 = "1wwhjfhvz5g4720qcdrj01fqb8kh3n36sxjpz8pzwhc7z4z5srs8";
}; };
checkInputs = [ pytest mock ]; checkInputs = [ pytest mock ];
propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core google_cloud_core ]; propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core google_cloud_core ];
checkPhase = '' checkPhase = ''
pytest tests/unit rm -r google
pytest tests/unit -k 'not policy'
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Google Cloud Bigtable API client library"; description = "Google Cloud Bigtable 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 ];
}; };