Unverified Commit 078747db authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

Merge pull request #230930 from helsinki-systems/fix/iredis

iredis: fix by relaxing some dependency versions
parents e7583779 c7302081
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -12,14 +12,16 @@ buildPythonApplication rec {
    sha256 = "d1e4e7936d0be456f70a39abeb1c97d931f66ccd60e891f4fd796ffb06dfeaf9";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace 'click = "^7.0"' 'click = "*"' \
      --replace 'wcwidth = "0.1.9"' 'wcwidth = "*"'
  '';
  pythonRelaxDeps = [
    "configobj"
    "wcwidth"
    "click"
    "packaging"
  ];

  nativeBuildInputs = [
    poetry-core
    pythonRelaxDepsHook
  ];

  propagatedBuildInputs = [