python3Packages.google_cloud_resource_manager: 0.30.0 -> 0.30.1, fix tests

This commit is contained in:
Jonathan Ringer 2020-03-18 15:34:33 -07:00 committed by Jon
parent 1b6632d6db
commit e7c1bff676

View File

@ -9,23 +9,24 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-resource-manager"; pname = "google-cloud-resource-manager";
version = "0.30.0"; version = "0.30.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "6e4f1d618d8934ee9011e97db940bb177770b430fd29e58848599a416d9f6590"; sha256 = "03n9ahf4qiyamblh217m5bjc8n57gh09xz87l2iw84c81xxdfcpg";
}; };
checkInputs = [ pytest mock ]; checkInputs = [ pytest mock ];
propagatedBuildInputs = [ google_cloud_core google_api_core ]; propagatedBuildInputs = [ google_cloud_core google_api_core ];
checkPhase = '' checkPhase = ''
rm -r google
pytest tests/unit pytest tests/unit
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Google Cloud Resource Manager API client library"; description = "Google Cloud Resource Manager 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 ];
}; };