python311Packages.behave: fix test failure (#378699)

authored by

Pol Dellaiera and committed by
GitHub
f58a1344 1374324f

+9
+9
pkgs/development/python-modules/behave/default.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch2, 5 6 buildPythonPackage, 6 7 python, 7 8 pythonOlder, ··· 30 31 rev = "v${version}"; 31 32 hash = "sha256-G1o0a57MRczwjGLl/tEYC+yx3nxpk6+E58RvR9kVJpA="; 32 33 }; 34 + 35 + patches = [ 36 + # fix tests: https://github.com/behave/behave/pull/1214 37 + (fetchpatch2 { 38 + url = "https://github.com/behave/behave/pull/1214/commits/98b63a2524eff50ce1dc7360a46462a6f673c5ea.patch?full_index=1"; 39 + hash = "sha256-MwODEm6vhg/H8ksp5XBBP5Uhu2dhB5B1T6Owkxpy3v0="; 40 + }) 41 + ]; 33 42 34 43 build-system = [ setuptools ]; 35 44