python313Packages.elasticsearch8: add missing inputs (#444587)

authored by

Fabian Affolter and committed by
GitHub
dad28e37 f4501c96

+7 -1
+7 -1
pkgs/development/python-modules/elasticsearch8/default.nix
··· 6 6 fetchPypi, 7 7 hatchling, 8 8 orjson, 9 + python-dateutil, 9 10 pythonOlder, 10 11 requests, 12 + typing-extensions, 11 13 }: 12 14 13 15 buildPythonPackage rec { ··· 24 26 25 27 build-system = [ hatchling ]; 26 28 27 - dependencies = [ elastic-transport ]; 29 + dependencies = [ 30 + elastic-transport 31 + python-dateutil 32 + typing-extensions 33 + ]; 28 34 29 35 optional-dependencies = { 30 36 async = [ aiohttp ];