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-13 23:37:17 -08:00
version = "0.12.0";
2018-05-01 04:24:41 -07:00
src = fetchPypi {
inherit pname version;
2019-02-13 23:37:17 -08:00
sha256 = "f61fb838a94ce3b349aa32c92fd8430f7e3511afdb18bf9640d647e30c90a6d6";
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 ];
};
}