Files
nixpkgs/pkgs/development/python-modules/llama-index-workflows/default.nix
2025-11-16 01:47:29 +01:00

41 lines
871 B
Nix

{
lib,
buildPythonPackage,
eval-type-backport,
fetchPypi,
hatchling,
llama-index-instrumentation,
pydantic,
}:
buildPythonPackage rec {
pname = "llama-index-workflows";
version = "2.1.0";
pyproject = true;
src = fetchPypi {
pname = "llama_index_workflows";
inherit version;
hash = "sha256-pt13GySd2xIlZTqp7eY2/RNNgF5zaM9999TjUKsE2OA=";
};
pythonRelaxDeps = [ "pydantic" ];
build-system = [ hatchling ];
dependencies = [
eval-type-backport
llama-index-instrumentation
pydantic
];
pythonImportsCheck = [ "workflows" ];
meta = {
description = "Event-driven, async-first, step-based way to control the execution flow of AI applications like Agents";
homepage = "https://pypi.org/project/llama-index-workflows/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}