about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cleo
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2023-04-20 16:31:33 -0700
committerRobert Schütz <nix@dotlambda.de>2023-04-20 16:31:33 -0700
commitbf1ecad5b6d82347d3b7dc8d66f3930ca4f16a3a (patch)
tree1f58738b8c3a6ab8bf97bb43ec3baca3e3830965 /pkgs/development/python-modules/cleo
parent6fc1a1c91af4fe3b33abcbc78140005f720233eb (diff)
python310Packages.cleo: relax rapidfuzz version contraint
Diffstat (limited to 'pkgs/development/python-modules/cleo')
-rw-r--r--pkgs/development/python-modules/cleo/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cleo/default.nix b/pkgs/development/python-modules/cleo/default.nix
index ce4b9237745a3..ab3eb9514d15e 100644
--- a/pkgs/development/python-modules/cleo/default.nix
+++ b/pkgs/development/python-modules/cleo/default.nix
@@ -5,6 +5,7 @@
 , poetry-core
 , pytest-mock
 , pytestCheckHook
+, pythonRelaxDepsHook
 , rapidfuzz
 }:
 
@@ -22,6 +23,11 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [
     poetry-core
+    pythonRelaxDepsHook
+  ];
+
+  pythonRelaxDeps = [
+    "rapidfuzz"
   ];
 
   propagatedBuildInputs = [