lol

python313Packages.paypalhttp: fix http header case issue

+9
+9
pkgs/development/python-modules/paypalhttp/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + fetchpatch2, 5 6 6 7 # propagates 7 8 pyopenssl, ··· 24 25 tag = version; 25 26 hash = "sha256-3ihcpYtpcejPkiyf4g4jveyNU6flQB2sv9EZ5Pd7tUc="; 26 27 }; 28 + 29 + patches = [ 30 + (fetchpatch2 { 31 + # fix content-type header case sensitiyivy 32 + url = "https://github.com/paypal/paypalhttp_python/commit/72609783230663b8e34c6f0384837db7b166c8f4.patch"; 33 + hash = "sha256-K2hO3XRrJ+Gm+rLtWRPy0E2syLS4RhNNHIA3w4xVYtY="; 34 + }) 35 + ]; 27 36 28 37 postPatch = '' 29 38 substituteInPlace tests/http_response_test.py \