2019-03-15 21:26:53 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-04-25 17:20:18 +01:00
|
|
|
, isPy3k
|
2019-03-15 21:26:53 +00:00
|
|
|
, click
|
|
|
|
, mock
|
|
|
|
, pytest
|
|
|
|
, futures
|
|
|
|
, google_auth
|
|
|
|
, requests_oauthlib
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-auth-oauthlib";
|
2019-10-16 10:43:07 +01:00
|
|
|
version = "0.4.1";
|
2019-03-15 21:26:53 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 10:43:07 +01:00
|
|
|
sha256 = "88d2cd115e3391eb85e1243ac6902e76e77c5fe438b7276b297fbe68015458dd";
|
2019-03-15 21:26:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [
|
2019-04-25 17:20:18 +01:00
|
|
|
click mock pytest
|
|
|
|
] ++ lib.optionals (!isPy3k) [ futures ];
|
2019-03-15 21:26:53 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
google_auth requests_oauthlib
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
2019-05-02 06:16:27 +01:00
|
|
|
rm -fr tests/__pycache__/
|
2019-03-15 21:26:53 +00:00
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Google Authentication Library: oauthlib integration";
|
|
|
|
homepage = https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ terlar ];
|
|
|
|
};
|
|
|
|
}
|