Files
nixpkgs/pkgs/development/python-modules/firecrawl-py/default.nix
T
2026-02-26 13:16:08 +01:00

54 lines
1.0 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
httpx,
nest-asyncio,
pydantic,
python-dotenv,
requests,
setuptools,
websockets,
}:
buildPythonPackage (finalAttrs: {
pname = "firecrawl-py";
version = "2.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mendableai";
repo = "firecrawl";
tag = "v${finalAttrs.version}";
hash = "sha256-7dB3jdp5jkRiNx63C5sjs3t85fuz5vzurfvYY5jWQyU=";
};
sourceRoot = "${finalAttrs.src.name}/apps/python-sdk";
build-system = [ setuptools ];
dependencies = [
aiohttp
httpx
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/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ ];
};
})