python311Packages.llama-index-program-openai: 0.10.22 -> 0.1.4

No longer use mono repo for the source as the release cycle don't
match.
This commit is contained in:
Fabian Affolter 2024-03-26 09:46:00 +01:00
parent 3e16b87687
commit a00b075f01
1 changed files with 19 additions and 7 deletions

View File

@ -1,26 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, llama-index-agent-openai
, llama-index-core
, llama-index-llms-openai
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "llama-index-program-openai";
inherit (llama-index-core) version src meta;
version = "0.1.4";
pyproject = true;
sourceRoot = "${src.name}/llama-index-integrations/program/${pname}";
disabled = pythonOlder "3.8";
nativeBuildInputs = [
src = fetchPypi {
pname = "llama_index_program_openai";
inherit version;
hash = "sha256-Vz6Zot0WrTyvOCyKso0awQ6yVxvJSB2EptiYBq1qpdQ=";
};
build-system = [
poetry-core
];
propagatedBuildInputs = [
dependencies = [
llama-index-agent-openai
llama-index-core
llama-index-llms-openai
@ -29,4 +34,11 @@ buildPythonPackage rec {
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 ];
};
}