d29c13b4de
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-google-auth-oauthlib/versions
42 lines
813 B
Nix
42 lines
813 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, click
|
|
, mock
|
|
, pytest
|
|
, futures
|
|
, google_auth
|
|
, requests_oauthlib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-auth-oauthlib";
|
|
version = "0.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "03rq2rjac0zh16vsw0q914sp62l9f8fp033wn3191pqd2cchqix0";
|
|
};
|
|
|
|
checkInputs = [
|
|
click mock pytest
|
|
] ++ lib.optionals (!isPy3k) [ futures ];
|
|
|
|
propagatedBuildInputs = [
|
|
google_auth requests_oauthlib
|
|
];
|
|
|
|
checkPhase = ''
|
|
rm -fr tests/__pycache__/
|
|
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 ];
|
|
};
|
|
}
|