From 8eef4a2436910519fd9e9da33d70d4ee9cd0dbd2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 20 Sep 2025 12:03:54 +0200 Subject: [PATCH] python313Packages.elasticsearch8: add missing inputs --- .../development/python-modules/elasticsearch8/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/elasticsearch8/default.nix b/pkgs/development/python-modules/elasticsearch8/default.nix index de8d5ebb3730..185993a39f13 100644 --- a/pkgs/development/python-modules/elasticsearch8/default.nix +++ b/pkgs/development/python-modules/elasticsearch8/default.nix @@ -6,8 +6,10 @@ fetchPypi, hatchling, orjson, + python-dateutil, pythonOlder, requests, + typing-extensions, }: buildPythonPackage rec { @@ -24,7 +26,11 @@ buildPythonPackage rec { build-system = [ hatchling ]; - dependencies = [ elastic-transport ]; + dependencies = [ + elastic-transport + python-dateutil + typing-extensions + ]; optional-dependencies = { async = [ aiohttp ];