diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix index e8d8c4d29458..f545d9135b44 100644 --- a/pkgs/development/python-modules/elasticsearch/default.nix +++ b/pkgs/development/python-modules/elasticsearch/default.nix @@ -7,25 +7,31 @@ hatchling, orjson, pyarrow, + python-dateutil, pythonOlder, requests, + typing-extensions, }: buildPythonPackage rec { pname = "elasticsearch"; - version = "8.17.2"; + version = "8.18.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-/38duK7v2HzrpO3OOqQHCZRYLmzwKdLme3TmbWNFCds="; + hash = "sha256-mYA18XqMH7p64msYPcp5fc+V24baan7LpW0xr8QPB8c="; }; build-system = [ hatchling ]; - dependencies = [ elastic-transport ]; + dependencies = [ + elastic-transport + python-dateutil + typing-extensions + ]; optional-dependencies = { requests = [ requests ];