Merge pull request #236395 from tjni/python-keepalive-remove-use_2to3

python310Packages.keepalive: remove use_2to3
This commit is contained in:
Sandro 2023-06-13 10:35:00 +02:00 committed by GitHub
commit 3fe64c9e3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
}:
buildPythonPackage rec {
pname = "keepalive";
version = "0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1";
hash = "sha256-PGuW+QYqWnYCLwydQenvVVLYCxyt1PzMG/jxg7odHsE=";
};
patches = [
# https://github.com/wikier/keepalive/pull/11
(fetchpatch {
name = "remove-use_2to3.patch";
url = "https://github.com/wikier/keepalive/commit/64393f6c5bf9c69d946b584fd664dd4df72604e6.patch";
hash = "sha256-/G1eEt8a4Qz7x5oQnDZZD/PIQwo9+oPZoy9OrXGHvR4=";
excludes = ["README.md"];
})
];
# No tests included
doCheck = false;
meta = with lib; {
description = "An HTTP handler for `urllib2` that supports HTTP 1.1 and keepalive";
description = "An HTTP handler for `urllib` that supports HTTP 1.1 and keepalive";
homepage = "https://github.com/wikier/keepalive";
license = licenses.asl20;
broken = true; # uses use_2to3, which is no longer supported for setuptools>=58
license = licenses.lgpl21Plus;
};
}