pythonPackages.google-auth-oauthlib: fix python3 build (#60209)
This commit is contained in:
parent
827e954c54
commit
fc48e74127
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, click
|
||||
, mock
|
||||
, pytest
|
||||
|
@ -19,8 +20,8 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
checkInputs = [
|
||||
click mock pytest futures
|
||||
];
|
||||
click mock pytest
|
||||
] ++ lib.optionals (!isPy3k) [ futures ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
google_auth requests_oauthlib
|
||||
|
|
Loading…
Reference in a new issue