From 1b6632d6dbc695609abeb85888c870c508930cee Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Wed, 18 Mar 2020 15:29:10 -0700 Subject: [PATCH] python3Packages.google-auth-oauthlib: fix tests --- .../python-modules/google-auth-oauthlib/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/google-auth-oauthlib/default.nix b/pkgs/development/python-modules/google-auth-oauthlib/default.nix index 54498ba1a85..cf83bd4d0ed 100644 --- a/pkgs/development/python-modules/google-auth-oauthlib/default.nix +++ b/pkgs/development/python-modules/google-auth-oauthlib/default.nix @@ -27,8 +27,9 @@ buildPythonPackage rec { google_auth requests_oauthlib ]; + doCheck = isPy3k; checkPhase = '' - rm -fr tests/__pycache__/ + rm -fr tests/__pycache__/ google py.test '';