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

View File

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