Files
nixpkgs/pkgs/development/python-modules/firecrawl-py/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

52 lines
1011 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
nest-asyncio,
pydantic,
python-dotenv,
requests,
setuptools,
websockets,
}:
buildPythonPackage rec {
pname = "firecrawl-py";
version = "1.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mendableai";
repo = "firecrawl";
tag = "v${version}";
hash = "sha256-GIde8FiU1/gS3oFfTf7f7Tc4KvDVL873VE5kjyh33Is=";
};
sourceRoot = "${src.name}/apps/python-sdk";
build-system = [ setuptools ];
dependencies = [
aiohttp
nest-asyncio
pydantic
python-dotenv
requests
websockets
];
# No tests
doCheck = false;
pythonImportsCheck = [ "firecrawl" ];
meta = {
description = "Turn entire websites into LLM-ready markdown or structured data. Scrape, crawl and extract with a single API";
homepage = "https://firecrawl.dev";
changelog = "https://github.com/mendableai/firecrawl/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ ];
};
}