python3Packages.llama-index*: unbreak (#436656)

Changed files
+29 -168
pkgs
development
python-modules
llama-index
llama-index-agent-openai
llama-index-embeddings-gemini
llama-index-embeddings-google
llama-index-embeddings-ollama
llama-index-embeddings-openai
llama-index-graph-stores-nebula
llama-index-graph-stores-neo4j
llama-index-program-openai
llama-index-question-gen-openai
llama-index-readers-database
llama-index-readers-file
llama-index-readers-json
llama-index-readers-llama-parse
llama-index-readers-s3
llama-index-readers-twitter
llama-index-readers-txtai
llama-index-readers-weather
llama-index-vector-stores-google
top-level
-41
pkgs/development/python-modules/llama-index-agent-openai/default.nix
···
-
{
-
lib,
-
buildPythonPackage,
-
fetchPypi,
-
hatchling,
-
llama-index-core,
-
llama-index-llms-openai,
-
pythonOlder,
-
}:
-
-
buildPythonPackage rec {
-
pname = "llama-index-agent-openai";
-
version = "0.4.12";
-
pyproject = true;
-
-
disabled = pythonOlder "3.8";
-
-
src = fetchPypi {
-
pname = "llama_index_agent_openai";
-
inherit version;
-
hash = "sha256-0v5T/rac/kV1LttzKL8NJfapBxs8BWeH5mG5Plt0iig=";
-
};
-
-
pythonRelaxDeps = [ "llama-index-llms-openai" ];
-
-
build-system = [ hatchling ];
-
-
dependencies = [
-
llama-index-core
-
llama-index-llms-openai
-
];
-
-
pythonImportsCheck = [ "llama_index.agent.openai" ];
-
-
meta = with lib; {
-
description = "LlamaIndex Agent Integration for OpenAI";
-
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/agent/llama-index-agent-openai";
-
license = licenses.mit;
-
maintainers = with maintainers; [ fab ];
-
};
-
}
+2 -2
pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix
···
fetchPypi,
google-generativeai,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
pythonRelaxDeps = [ "google-generativeai" ];
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
google-generativeai
+2 -2
pkgs/development/python-modules/llama-index-embeddings-google/default.nix
···
fetchPypi,
google-generativeai,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
pythonRelaxDeps = [ "google-generativeai" ];
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
google-generativeai
+2 -2
pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix
···
fetchPypi,
llama-index-core,
ollama,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
pythonRelaxDeps = [ "ollama" ];
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
llama-index-core
+2 -2
pkgs/development/python-modules/llama-index-embeddings-openai/default.nix
···
buildPythonPackage,
fetchPypi,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
hash = "sha256-rFh4OaERCJ6opiVfkhQBbXqBOzg7u7+SB3mb4RAHWOs=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [ llama-index-core ];
+2 -2
pkgs/development/python-modules/llama-index-graph-stores-nebula/default.nix
···
fetchPypi,
llama-index-core,
nebula3-python,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
hash = "sha256-BzArWYZIY1SRl1q48wAdAy+mWoId+lNbcsw9LQmmw7Q=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
llama-index-core
+2 -2
pkgs/development/python-modules/llama-index-graph-stores-neo4j/default.nix
···
fetchPypi,
neo4j,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
hash = "sha256-Iumsnln5iGMAoB3aY4haecm87jYXlEW4/2+uppW8m9c=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
neo4j
-40
pkgs/development/python-modules/llama-index-program-openai/default.nix
···
-
{
-
lib,
-
buildPythonPackage,
-
fetchPypi,
-
hatchling,
-
llama-index-agent-openai,
-
llama-index-core,
-
llama-index-llms-openai,
-
}:
-
-
buildPythonPackage rec {
-
pname = "llama-index-program-openai";
-
version = "0.3.2";
-
pyproject = true;
-
-
src = fetchPypi {
-
pname = "llama_index_program_openai";
-
inherit version;
-
hash = "sha256-BMlZouYWSJiUvS7uu5lQDW8cF9WIw9oN3HXr0+t0Ue4=";
-
};
-
-
pythonRelaxDeps = [ "llama-index-agent-openai" ];
-
-
build-system = [ hatchling ];
-
-
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 ];
-
};
-
}
-41
pkgs/development/python-modules/llama-index-question-gen-openai/default.nix
···
-
{
-
lib,
-
buildPythonPackage,
-
fetchPypi,
-
hatchling,
-
llama-index-core,
-
llama-index-llms-openai,
-
llama-index-program-openai,
-
}:
-
-
buildPythonPackage rec {
-
pname = "llama-index-question-gen-openai";
-
version = "0.3.1";
-
pyproject = true;
-
-
src = fetchPypi {
-
pname = "llama_index_question_gen_openai";
-
inherit version;
-
hash = "sha256-XpMRtDPMJYH/ilMfoZ+zqiGBW6/3WqrN7xF2CslSKqk=";
-
};
-
-
build-system = [ hatchling ];
-
-
dependencies = [
-
llama-index-core
-
llama-index-llms-openai
-
llama-index-program-openai
-
];
-
-
# Tests are only available in the mono repo
-
doCheck = false;
-
-
pythonImportsCheck = [ "llama_index.question_gen.openai" ];
-
-
meta = with lib; {
-
description = "LlamaIndex Question Gen Integration for Openai Generator";
-
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/question_gen/llama-index-question-gen-openai";
-
license = licenses.mit;
-
maintainers = with maintainers; [ fab ];
-
};
-
}
+2 -2
pkgs/development/python-modules/llama-index-readers-database/default.nix
···
buildPythonPackage,
fetchPypi,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
hash = "sha256-5eaNufjXiM4sgc101d19Z3W3CQLE3m8uLa1GOPh05ek=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [ llama-index-core ];
+1
pkgs/development/python-modules/llama-index-readers-file/default.nix
···
"pymupdf"
"pypdf"
"striprtf"
+
"pandas"
];
build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/llama-index-readers-json/default.nix
···
buildPythonPackage,
fetchPypi,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
hash = "sha256-ThQWERdEzPIAUaYWQDkSJdIIvixrKv0eN4LGRaNaS3U=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [ llama-index-core ];
+2 -4
pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix
···
fetchPypi,
llama-index-core,
llama-parse,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
pythonRelaxDeps = [ "llama-parse" ];
-
nativeBuildInputs = [
-
poetry-core
-
];
+
build-system = [ hatchling ];
propagatedBuildInputs = [
llama-parse
+2 -2
pkgs/development/python-modules/llama-index-readers-s3/default.nix
···
fetchPypi,
llama-index-core,
llama-index-readers-file,
-
poetry-core,
+
hatchling,
pythonOlder,
s3fs,
}:
···
hash = "sha256-3wzxfKkwhC4YfUYPBa/XKqIZQ6zLgB9SSHR+vPhwzOA=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
llama-index-core
+2 -2
pkgs/development/python-modules/llama-index-readers-twitter/default.nix
···
buildPythonPackage,
fetchPypi,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
tweepy,
}:
···
hash = "sha256-AfruOaKbPJasPS0eQjr6501yt32nQ7PvFwD2QVdgBYA=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
llama-index-core
+2 -2
pkgs/development/python-modules/llama-index-readers-txtai/default.nix
···
buildPythonPackage,
fetchPypi,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
hash = "sha256-0eOJ9r27lG6WwOz27+N5qldROoaU5UAewtY4N4m8Kcs=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [ llama-index-core ];
+2 -2
pkgs/development/python-modules/llama-index-readers-weather/default.nix
···
buildPythonPackage,
fetchPypi,
llama-index-core,
-
poetry-core,
+
hatchling,
pyowm,
pythonOlder,
pytestCheckHook,
···
hash = "sha256-qgrHlJXOKWY5UnB2lZAJun3xA9sxn5+ZNNI6+aDnE98=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
dependencies = [
llama-index-core
+2 -2
pkgs/development/python-modules/llama-index-vector-stores-google/default.nix
···
fetchPypi,
google-generativeai,
llama-index-core,
-
poetry-core,
+
hatchling,
pythonOlder,
}:
···
pythonRelaxDeps = [ "google-generativeai" ];
build-system = [
-
poetry-core
+
hatchling
];
dependencies = [
-6
pkgs/development/python-modules/llama-index/default.nix
···
{
buildPythonPackage,
hatchling,
-
llama-index-agent-openai,
llama-index-cli,
llama-index-core,
llama-index-embeddings-openai,
···
llama-index-legacy,
llama-index-llms-openai,
llama-index-multi-modal-llms-openai,
-
llama-index-program-openai,
-
llama-index-question-gen-openai,
llama-index-readers-file,
llama-index-readers-llama-parse,
}:
···
];
dependencies = [
-
llama-index-agent-openai
llama-index-cli
llama-index-core
llama-index-embeddings-openai
···
llama-index-legacy
llama-index-llms-openai
llama-index-multi-modal-llms-openai
-
llama-index-program-openai
-
llama-index-question-gen-openai
llama-index-readers-file
llama-index-readers-llama-parse
];
-10
pkgs/top-level/python-packages.nix
···
llama-index = callPackage ../development/python-modules/llama-index { };
-
llama-index-agent-openai = callPackage ../development/python-modules/llama-index-agent-openai { };
-
llama-index-cli = callPackage ../development/python-modules/llama-index-cli { };
llama-index-core = callPackage ../development/python-modules/llama-index-core { };
···
llama-index-multi-modal-llms-openai =
callPackage ../development/python-modules/llama-index-multi-modal-llms-openai
-
{ };
-
-
llama-index-program-openai =
-
callPackage ../development/python-modules/llama-index-program-openai
-
{ };
-
-
llama-index-question-gen-openai =
-
callPackage ../development/python-modules/llama-index-question-gen-openai
{ };
llama-index-readers-database =