nixpkgs/pkgs/development/python-modules/httplib2/default.nix

22 lines
497 B
Nix
Raw Normal View History

2018-05-01 04:24:41 -07:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
2019-02-16 00:53:24 -08:00
version = "0.12.1";
2018-05-01 04:24:41 -07:00
src = fetchPypi {
inherit pname version;
2019-02-16 00:53:24 -08:00
sha256 = "4ba6b8fd77d0038769bf3c33c9a96a6f752bc4cdf739701fdcaf210121f399d4";
2018-05-01 04:24:41 -07:00
};
2019-02-13 23:37:17 -08:00
# Needs setting up
doCheck = false;
2018-05-01 04:24:41 -07:00
meta = with lib; {
homepage = http://code.google.com/p/httplib2;
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
}