nixpkgs/pkgs/development/python-modules/llama-parse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
699 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
llama-index-core,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-parse";
version = "0.5.14";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_parse";
inherit version;
hash = "sha256-uQUQ9Yd01u5ztidf5PGqD/OjBgJt8plZYG5WBzOEJIw=";
};
build-system = [ poetry-core ];
dependencies = [ llama-index-core ];
pythonImportsCheck = [ "llama_parse" ];
meta = with lib; {
description = "Parse files into RAG-Optimized formats";
homepage = "https://pypi.org/project/llama-parse/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}