From 77600db68bb25fb87f27b76df69aa5d092630eaa Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Feb 2026 15:46:19 +0100 Subject: [PATCH] Revert "python3Packages.elasticsearch: 8.18.1 -> 9.2.1" This reverts commit 8704634a8bd09ae85ecc4e34e7fbcbcbb868f31c. Requires newer elastic-transport, which breaks elastic-dsl. --- pkgs/development/python-modules/elasticsearch/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix index b551c19ed0f1..6bb640315f3b 100644 --- a/pkgs/development/python-modules/elasticsearch/default.nix +++ b/pkgs/development/python-modules/elasticsearch/default.nix @@ -1,7 +1,6 @@ { lib, aiohttp, - anyio, buildPythonPackage, elastic-transport, fetchPypi, @@ -10,27 +9,24 @@ pyarrow, python-dateutil, requests, - sniffio, typing-extensions, }: buildPythonPackage rec { pname = "elasticsearch"; - version = "9.2.1"; + version = "8.18.1"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-l/RzQY6JdmETSXVyh6yYKs8S9OMFGChj2YXVoDHDaDA="; + hash = "sha256-mYA18XqMH7p64msYPcp5fc+V24baan7LpW0xr8QPB8c="; }; build-system = [ hatchling ]; dependencies = [ - anyio elastic-transport python-dateutil - sniffio typing-extensions ];