Merge pull request #240785 from tjni/requests-unixsocket

python310Packages.requests-unixsocket: patch to make compatible with urllib3 2+
This commit is contained in:
Sandro 2023-07-09 19:25:51 +02:00 committed by GitHub
commit 4e60bac8bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, pbr
, requests
, pytestCheckHook
@ -17,6 +18,15 @@ buildPythonPackage rec {
hash = "sha256-KDBCg+qTV9Rf/1itWxHkdwjPv1gGgXqlmyo2Mijulx4=";
};
patches = [
# https://github.com/msabramo/requests-unixsocket/pull/69
(fetchpatch {
name = "urllib3-2-compatibility.patch";
url = "https://github.com/msabramo/requests-unixsocket/commit/39b9c64847a52ddc8c6d14ff414a6a7a3f6358d9.patch";
hash = "sha256-DFtjhk33JLCu7FW6XI7uf2klNmwzvh2QNwxUb4W223Q=";
})
];
nativeBuildInputs = [
pbr
];