From a1010b6fca4b3bf1aee4dc38a34981876b41304f Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 26 Oct 2019 17:09:37 -0700 Subject: python3Packages.grpc_google_iam_v1: disable awkward tests --- pkgs/development/python-modules/grpc_google_iam_v1/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/grpc_google_iam_v1/default.nix b/pkgs/development/python-modules/grpc_google_iam_v1/default.nix index 1f26c6f3317..843c1b32f49 100644 --- a/pkgs/development/python-modules/grpc_google_iam_v1/default.nix +++ b/pkgs/development/python-modules/grpc_google_iam_v1/default.nix @@ -3,6 +3,7 @@ , fetchPypi , grpcio , googleapis_common_protos +, pytest }: buildPythonPackage rec { @@ -16,6 +17,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ grpcio googleapis_common_protos ]; + # non-standard test format, and python3 will load local google folder first + # but tests cannot be ran if google folder is removed or moved + doCheck = false; + checkInputs = [ pytest ]; + meta = with stdenv.lib; { description = "GRPC library for the google-iam-v1 service"; homepage = https://github.com/googleapis/googleapis; -- cgit 1.4.1