iredis: 1.15.1 -> 1.15.2

Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>

+4 -3
+4 -3
pkgs/by-name/ir/iredis/package.nix
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "iredis"; 10 - version = "1.15.1"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "laixintao"; 15 repo = "iredis"; 16 tag = "v${version}"; 17 - hash = "sha256-ZA4q2Z3X9zhzW/TH8aRliVij8UxqDVUamhKcfVxWb/c="; 18 }; 19 20 postPatch = '' 21 substituteInPlace pyproject.toml \ 22 --replace-fail 'packaging = "^23.0"' 'packaging = "*"' \ 23 - --replace-fail 'wcwidth = "0.1.9"' 'wcwidth = "*"' 24 ''; 25 26 nativeBuildInputs = with python3.pkgs; [
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "iredis"; 10 + version = "1.15.2"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "laixintao"; 15 repo = "iredis"; 16 tag = "v${version}"; 17 + hash = "sha256-g/gQb9QOyfa7kyHCUZf/kLZRO5IE8389BUCYz8Sqr8o="; 18 }; 19 20 postPatch = '' 21 substituteInPlace pyproject.toml \ 22 --replace-fail 'packaging = "^23.0"' 'packaging = "*"' \ 23 + --replace-fail 'wcwidth = "0.1.9"' 'wcwidth = "*"' \ 24 + --replace-fail 'redis = "^5.0.0"' 'redis = "*"' 25 ''; 26 27 nativeBuildInputs = with python3.pkgs; [