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 fetchPypi, 7 hatchling, 8 orjson, 9 pythonOlder, 10 requests, 11 }: 12 13 buildPythonPackage rec { ··· 24 25 build-system = [ hatchling ]; 26 27 - dependencies = [ elastic-transport ]; 28 29 optional-dependencies = { 30 async = [ aiohttp ];
··· 6 fetchPypi, 7 hatchling, 8 orjson, 9 + python-dateutil, 10 pythonOlder, 11 requests, 12 + typing-extensions, 13 }: 14 15 buildPythonPackage rec { ··· 26 27 build-system = [ hatchling ]; 28 29 + dependencies = [ 30 + elastic-transport 31 + python-dateutil 32 + typing-extensions 33 + ]; 34 35 optional-dependencies = { 36 async = [ aiohttp ];