1{ lib
2, isPy3k
3, buildPythonPackage
4, fetchPypi
5, flask
6, google-auth
7, httplib2
8, mock
9, pytestCheckHook
10, pytest-localserver
11}:
12
13buildPythonPackage rec {
14 pname = "google-auth-httplib2";
15 version = "0.1.0";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "a07c39fd632becacd3f07718dfd6021bf396978f03ad3ce4321d060015cc30ac";
20 };
21
22 propagatedBuildInputs = [
23 google-auth
24 httplib2
25 ];
26
27 checkInputs = [
28 flask
29 mock
30 pytestCheckHook
31 pytest-localserver
32 ];
33
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 };
40}