python3Packages.fakeredis: relax redis constraint

This commit is contained in:
Martin Weinelt 2022-04-12 23:48:12 +02:00
parent 1feb33974a
commit 90112c221f

View file

@ -26,6 +26,11 @@ buildPythonPackage rec {
hash = "sha256-fCxLobQuCnUzfFS3d78GcQVrRWllDj/5J+S5s4WvyOw=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "redis<4.2.0" "redis"
'';
propagatedBuildInputs = [
aioredis
lupa