mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #281096 from natsukium/redis-om/fix
python311Packages.redis-om: relax deps
This commit is contained in:
commit
497487d423
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user