nixpkgs/pkgs/development/python-modules/llama-index-program-openai/default.nix

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

44 lines
990 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
llama-index-agent-openai,
llama-index-core,
llama-index-llms-openai,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "llama-index-program-openai";
version = "0.3.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_index_program_openai";
inherit version;
hash = "sha256-YDmmzb/2LGOIwH6CoVf+Lt07vvDFrfKSrYVGv07HW4I=";
};
pythonRelaxDeps = [ "llama-index-agent-openai" ];
build-system = [ poetry-core ];
dependencies = [
llama-index-agent-openai
llama-index-core
llama-index-llms-openai
];
pythonImportsCheck = [ "llama_index.program.openai" ];
meta = with lib; {
description = "LlamaIndex Program Integration for OpenAI";
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/program/llama-index-program-openai";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}