2018-05-01 12:24:41 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "httplib2";
|
2020-06-05 18:44:35 +01:00
|
|
|
version = "0.17.4";
|
2018-05-01 12:24:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 18:44:35 +01:00
|
|
|
sha256 = "1e9340ecf0187a621bdcfb407c32e04e8e09fc6ab28b050efa38f20eae0e975f";
|
2018-05-01 12:24:41 +01:00
|
|
|
};
|
|
|
|
|
2019-02-14 07:37:17 +00:00
|
|
|
# Needs setting up
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-05-01 12:24:41 +01:00
|
|
|
meta = with lib; {
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://github.com/httplib2/httplib2";
|
2018-05-01 12:24:41 +01:00
|
|
|
description = "A comprehensive HTTP client library";
|
|
|
|
license = licenses.mit;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-05-01 12:24:41 +01:00
|
|
|
};
|
|
|
|
}
|