From 1495616b8bfc6de1d22145a84ba78fe1ab5e09b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Wed, 21 May 2025 09:54:05 +0000 Subject: [PATCH] nix: client depends on aiohttp This probably worked before the nixpkgs bump because a dependency propagated aiohttp. --- nix/client.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/client.nix b/nix/client.nix index 351fd08a..be8e2fc7 100644 --- a/nix/client.nix +++ b/nix/client.nix @@ -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 ];