lol

Merge #237923: python311Packages.yarl: fix tests

...into staging-next

+9
+9
pkgs/development/python-modules/yarl/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , fetchpatch 4 5 , pythonAtLeast 5 6 , pythonOlder 6 7 , idna ··· 21 22 inherit pname version; 22 23 hash = "sha256-SdQ0AsbjATrQl4YCv2v1MoU1xI0ZIwS5G5ejxnkLFWI="; 23 24 }; 25 + 26 + patches = [ 27 + # https://github.com/aio-libs/yarl/issues/876 28 + (fetchpatch { 29 + url = "https://github.com/aio-libs/yarl/commit/0a94c6e4948e00fff072c0cf367afbf4ac36f906.patch"; 30 + hash = "sha256-bqT46OLZLkBef8FQ1L95ITD70mC3+WIkr3+h2ekKrvE="; 31 + }) 32 + ]; 24 33 25 34 postPatch = '' 26 35 sed -i '/^addopts/d' setup.cfg