1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "keepalive";
8 version = "0.5";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1";
13 };
14
15 # No tests included
16 doCheck = false;
17
18 meta = with lib; {
19 description = "An HTTP handler for `urllib2` that supports HTTP 1.1 and keepalive";
20 homepage = "https://github.com/wikier/keepalive";
21 license = licenses.asl20;
22 broken = true; # uses use_2to3, which is no longer supported for setuptools>=58
23 };
24
25}