python.pkgs.httplib2: 0.9.2 -> 0.11.3

This commit is contained in:
Robin Gloster
2018-05-01 13:24:41 +02:00
parent 5d03cce7ed
commit 926f312cf4
2 changed files with 19 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
version = "0.11.3";
src = fetchPypi {
inherit pname version;
sha256 = "1pyb0hmc0j0kcy27yiw38gq9pk7f1fkny5k1vd13cdz6l3csw7g7";
};
meta = with lib; {
homepage = http://code.google.com/p/httplib2;
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
}