From 8704634a8bd09ae85ecc4e34e7fbcbcbb868f31c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 21 Jan 2026 18:33:12 +0100 Subject: [PATCH] python3Packages.elasticsearch: 8.18.1 -> 9.2.1 https://github.com/elastic/elasticsearch-py/releases/tag/v9.2.1 This commit was automatically generated using update-python-libraries. --- pkgs/development/python-modules/elasticsearch/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix index 6bb640315f3b..b551c19ed0f1 100644 --- a/pkgs/development/python-modules/elasticsearch/default.nix +++ b/pkgs/development/python-modules/elasticsearch/default.nix @@ -1,6 +1,7 @@ { lib, aiohttp, + anyio, buildPythonPackage, elastic-transport, fetchPypi, @@ -9,24 +10,27 @@ pyarrow, python-dateutil, requests, + sniffio, typing-extensions, }: buildPythonPackage rec { pname = "elasticsearch"; - version = "8.18.1"; + version = "9.2.1"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-mYA18XqMH7p64msYPcp5fc+V24baan7LpW0xr8QPB8c="; + hash = "sha256-l/RzQY6JdmETSXVyh6yYKs8S9OMFGChj2YXVoDHDaDA="; }; build-system = [ hatchling ]; dependencies = [ + anyio elastic-transport python-dateutil + sniffio typing-extensions ];