1{ lib 2, buildPythonPackage 3, fetchPypi 4, httplib2 5, mock 6, coverage 7}: 8 9buildPythonPackage rec { 10 pname = "oauth2"; 11 version = "1.9.0.post1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf"; 16 }; 17 18 propagatedBuildInputs = [ httplib2 ]; 19 buildInputs = [ mock coverage ]; 20 21 # ServerNotFoundError: Unable to find the server at oauth-sandbox.sevengoslings.net 22 doCheck = false; 23 24 meta = with lib; { 25 homepage = "https://github.com/simplegeo/python-oauth2"; 26 description = "Library for OAuth version 1.0"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ ]; 29 platforms = platforms.unix; 30 }; 31 32}