linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / google-auth-oauthlib / default.nix
blob37752601e2658f33a7109bd1feb93baa26676e27
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , click
5 , mock
6 , pytestCheckHook
7 , google-auth
8 , requests_oauthlib
9 }:
11 buildPythonPackage rec {
12   pname = "google-auth-oauthlib";
13   version = "0.4.4";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "sha256-CYMsbnUDL5OBjt8a/+R0YSHWQMYlpb75tclq9nbpju4=";
18   };
20   propagatedBuildInputs = [
21     google-auth
22     requests_oauthlib
23   ];
25   checkInputs = [
26     click
27     mock
28     pytestCheckHook
29   ];
31   meta = with lib; {
32     description = "Google Authentication Library: oauthlib integration";
33     homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib";
34     license = licenses.asl20;
35     maintainers = with maintainers; [ SuperSandro2000 terlar ];
36   };