summary refs log blame commit diff
path: root/pkgs/development/python-modules/httplib2/default.nix
blob: c40f3453d6b9094f26b8d85afb4e7197c9248136 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                       
                     


                          
                                                                                

    


                    
                    
                                                      

                                                        
                                        

    
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "httplib2";
  version = "0.15.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a5f914f18f99cb9541660454a159e3b3c63241fc3ab60005bb88d97cc7a4fb58";
  };

  # Needs setting up
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/httplib2/httplib2";
    description = "A comprehensive HTTP client library";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}