python3Packages.google_cloud_resource_manager: fix tests
This commit is contained in:
parent
24d644de7d
commit
7fbefa7cf9
|
@ -1,11 +1,5 @@
|
||||||
{ stdenv
|
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
|
||||||
, buildPythonPackage
|
, google_cloud_core, google_api_core, mock, pytest }:
|
||||||
, fetchPypi
|
|
||||||
, google_cloud_core
|
|
||||||
, google_api_core
|
|
||||||
, pytest
|
|
||||||
, mock
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-cloud-resource-manager";
|
pname = "google-cloud-resource-manager";
|
||||||
|
@ -16,17 +10,24 @@ buildPythonPackage rec {
|
||||||
sha256 = "de7eba5235df61deee2291a2fe70b904154df613a334109488afdea7a4c0011f";
|
sha256 = "de7eba5235df61deee2291a2fe70b904154df613a334109488afdea7a4c0011f";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest mock ];
|
disabled = pythonOlder "3.5";
|
||||||
propagatedBuildInputs = [ google_cloud_core google_api_core ];
|
|
||||||
|
|
||||||
checkPhase = ''
|
checkInputs = [ mock pytestCheckHook ];
|
||||||
|
propagatedBuildInputs = [ google_api_core google_cloud_core ];
|
||||||
|
|
||||||
|
# api_url test broken, fix not yet released
|
||||||
|
# https://github.com/googleapis/python-resource-manager/pull/31
|
||||||
|
disabledTests =
|
||||||
|
[ "api_url_no_extra_query_param" "api_url_w_custom_endpoint" ];
|
||||||
|
|
||||||
|
# prevent google directory from shadowing google imports
|
||||||
|
preCheck = ''
|
||||||
rm -r google
|
rm -r google
|
||||||
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/googleapis/python-resource-manager";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = [ maintainers.costrouc ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue