summary refs log tree commit diff
path: root/pkgs/development/python-modules/httplib2/default.nix
blob: c37c4b135623ac0dcde8f9e994dbb1a0d605a569 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi }:

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

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

  # Needs setting up
  doCheck = false;

  meta = with lib; {
    homepage = http://code.google.com/p/httplib2;
    description = "A comprehensive HTTP client library";
    license = licenses.mit;
    maintainers = with maintainers; [ garbas ];
  };
}