linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / google-auth-httplib2 / default.nix
blob05ea601330db397254bccc2872d6a649145adbbd
1 { lib
2 , isPy3k
3 , buildPythonPackage
4 , fetchPypi
5 , flask
6 , google-auth
7 , httplib2
8 , mock
9 , pytestCheckHook
10 , pytest-localserver
13 buildPythonPackage rec {
14   pname = "google-auth-httplib2";
15   version = "0.1.0";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "sha256-oHw5/WMr7KzT8HcY39YCG/OWl48DrTzkMh0GABXMMKw=";
20   };
22   propagatedBuildInputs = [
23     google-auth
24     httplib2
25   ];
27   checkInputs = [
28     flask
29     mock
30     pytestCheckHook
31     pytest-localserver
32   ];
34   meta = with lib; {
35     description = "Google Authentication Library: httplib2 transport";
36     homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ SuperSandro2000 ];
39   };