nix: client depends on aiohttp

This probably worked before the nixpkgs bump because a dependency
propagated aiohttp.
This commit is contained in:
Daniël de Kok 2025-05-21 09:54:05 +00:00
parent 40a4f9b5ea
commit 1495616b8b

View File

@ -1,6 +1,7 @@
{
buildPythonPackage,
poetry-core,
aiohttp,
huggingface-hub,
pydantic,
}:
@ -15,6 +16,7 @@ buildPythonPackage {
build-system = [ poetry-core ];
dependencies = [
aiohttp
huggingface-hub
pydantic
];