about summary refs log tree commit diff
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2024-01-15 18:05:28 +0900
committernatsukium <tomoya.otabi@gmail.com>2024-01-15 18:30:15 +0900
commit5864244973fdbce04c59779338f096fdd817d430 (patch)
tree2375927dc48c6e7465c35c7e71e58103a72ad96c
parent817c314ea6911512f61a21cc0cf8296e3b085145 (diff)
downloadnixlib-5864244973fdbce04c59779338f096fdd817d430.tar
nixlib-5864244973fdbce04c59779338f096fdd817d430.tar.gz
nixlib-5864244973fdbce04c59779338f096fdd817d430.tar.bz2
nixlib-5864244973fdbce04c59779338f096fdd817d430.tar.lz
nixlib-5864244973fdbce04c59779338f096fdd817d430.tar.xz
nixlib-5864244973fdbce04c59779338f096fdd817d430.tar.zst
nixlib-5864244973fdbce04c59779338f096fdd817d430.zip
python311Packages.redis-om: relax deps
-rw-r--r--pkgs/development/python-modules/redis-om/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/redis-om/default.nix b/pkgs/development/python-modules/redis-om/default.nix
index aec5311351e4..df49fd470d1e 100644
--- a/pkgs/development/python-modules/redis-om/default.nix
+++ b/pkgs/development/python-modules/redis-om/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchFromGitHub
 , pythonOlder
+, pythonRelaxDepsHook
 , unasync
 , poetry-core
 , python
@@ -33,10 +34,16 @@ buildPythonPackage rec {
   };
 
   nativeBuildInputs = [
+    pythonRelaxDepsHook
     unasync
     poetry-core
   ];
 
+  # it has not been maintained at all for a half year and some dependencies are outdated
+  # https://github.com/redis/redis-om-python/pull/554
+  # https://github.com/redis/redis-om-python/pull/577
+  pythonRelaxDeps = true;
+
   propagatedBuildInputs = [
     click
     hiredis