From 1855bb33625ba7b05682cbdd6b01fd32282fc5d9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 21 May 2025 19:00:59 +0200 Subject: [PATCH] Revert "python313Packages.elasticsearch: 8.17.2 -> 9.0.1" This reverts commit 123add8e35e30a3c2cda29eb3a65bfd9efbca324. Breaks elasticsearch-dsl, which has not support for the 9.0 series. --- .../python-modules/elasticsearch/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix index 8342c4718858..e8d8c4d29458 100644 --- a/pkgs/development/python-modules/elasticsearch/default.nix +++ b/pkgs/development/python-modules/elasticsearch/default.nix @@ -7,31 +7,25 @@ hatchling, orjson, pyarrow, - python-dateutil, pythonOlder, requests, - typing-extensions, }: buildPythonPackage rec { pname = "elasticsearch"; - version = "9.0.1"; + version = "8.17.2"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-dvm1Gc/RWoYPYVqUupDcuVQ7chMGvFFE7MFfC01dJ4E="; + hash = "sha256-/38duK7v2HzrpO3OOqQHCZRYLmzwKdLme3TmbWNFCds="; }; build-system = [ hatchling ]; - dependencies = [ - elastic-transport - python-dateutil - typing-extensions - ]; + dependencies = [ elastic-transport ]; optional-dependencies = { requests = [ requests ];