35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
|
|
, google_cloud_core, google_api_core, mock, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-resource-manager";
|
|
version = "0.30.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "de7eba5235df61deee2291a2fe70b904154df613a334109488afdea7a4c0011f";
|
|
};
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Google Cloud Resource Manager API client library";
|
|
homepage = "https://github.com/googleapis/python-resource-manager";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|