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
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF
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 ];
};
}

View file

@ -6414,21 +6414,7 @@ in {
httpbin = callPackage ../development/python-modules/httpbin { };
httplib2 = buildPythonPackage rec {
name = "httplib2-0.9.2";
src = pkgs.fetchurl {
url = "mirror://pypi/h/httplib2/${name}.tar.gz";
sha256 = "126rsryvw9vhbf3qmsfw9lf4l4xm2srmgs439lgma4cpag4s3ay3";
};
meta = {
homepage = http://code.google.com/p/httplib2;
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
};
httplib2 = callPackage ../development/python-modules/httplib2 { };
hvac = callPackage ../development/python-modules/hvac { };