From 2d13a4916799ea28d854912203b29487c129cc58 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 24 Aug 2025 10:31:52 +0200 Subject: [PATCH] python313Packages.firecrawl-py: add missing aiohttp --- pkgs/development/python-modules/firecrawl-py/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/firecrawl-py/default.nix b/pkgs/development/python-modules/firecrawl-py/default.nix index 35858d74ca5e..baf845e53b81 100644 --- a/pkgs/development/python-modules/firecrawl-py/default.nix +++ b/pkgs/development/python-modules/firecrawl-py/default.nix @@ -1,12 +1,13 @@ { lib, + aiohttp, buildPythonPackage, fetchFromGitHub, - setuptools, nest-asyncio, pydantic, python-dotenv, requests, + setuptools, websockets, }: @@ -27,6 +28,7 @@ buildPythonPackage rec { build-system = [ setuptools ]; dependencies = [ + aiohttp nest-asyncio pydantic python-dotenv