1{ lib 2, buildPythonPackage 3, fetchPypi 4, flask 5, google-auth 6, httplib2 7, mock 8, pytestCheckHook 9, pytest-localserver 10}: 11 12buildPythonPackage rec { 13 pname = "google-auth-httplib2"; 14 version = "0.1.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "a07c39fd632becacd3f07718dfd6021bf396978f03ad3ce4321d060015cc30ac"; 19 }; 20 21 propagatedBuildInputs = [ 22 google-auth 23 httplib2 24 ]; 25 26 checkInputs = [ 27 flask 28 mock 29 pytestCheckHook 30 pytest-localserver 31 ]; 32 33 meta = with lib; { 34 description = "Google Authentication Library: httplib2 transport"; 35 homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2"; 36 license = licenses.asl20; 37 maintainers = with maintainers; [ SuperSandro2000 ]; 38 }; 39}