linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / oauth2 / default.nix
blobd9c0ae505f71cf292e1de53e5539a17040b925e9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , httplib2
5 , mock
6 , coverage
7 }:
9 buildPythonPackage rec {
10   pname = "oauth2";
11   version = "1.9.0.post1";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf";
16   };
18   propagatedBuildInputs = [ httplib2 ];
19   buildInputs = [ mock coverage ];
21   # ServerNotFoundError: Unable to find the server at oauth-sandbox.sevengoslings.net
22   doCheck = false;
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   };