Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #307157 from fabaff/llama-index-bump

python312Packages.llama-index-core: 0.10.31 -> 0.10.32, python312Packages.llamaindex-py-client: 0.1.18 -> 0.1.19

authored by Fabian Affolter and committed by GitHub ea115268 dfe10d3c

+30 -40
+2 -2
pkgs/development/python-modules/llama-index-core/default.nix
··· 44 45 buildPythonPackage rec { 46 pname = "llama-index-core"; 47 - version = "0.10.31"; 48 pyproject = true; 49 50 disabled = pythonOlder "3.8"; ··· 53 owner = "run-llama"; 54 repo = "llama_index"; 55 rev = "refs/tags/v${version}"; 56 - hash = "sha256-F/XcG+42l729sZ4dBwYEh+2IR1SBcflwwOkXBnqOjoI="; 57 }; 58 59 sourceRoot = "${src.name}/${pname}";
··· 44 45 buildPythonPackage rec { 46 pname = "llama-index-core"; 47 + version = "0.10.32"; 48 pyproject = true; 49 50 disabled = pythonOlder "3.8"; ··· 53 owner = "run-llama"; 54 repo = "llama_index"; 55 rev = "refs/tags/v${version}"; 56 + hash = "sha256-p+ye8o+paA6L8f1DiiiFJufyEqRn+ERNBWuhkoWfZb8="; 57 }; 58 59 sourceRoot = "${src.name}/${pname}";
+12 -17
pkgs/development/python-modules/llama-index-embeddings-openai/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , llama-index-core 5 - , poetry-core 6 - , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "llama-index-embeddings-openai"; 11 - version = "0.1.8"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.8"; ··· 16 src = fetchPypi { 17 pname = "llama_index_embeddings_openai"; 18 inherit version; 19 - hash = "sha256-quTOPsL+LLYE2URkaYLHFmOouZ7V+MNwgj7oLu9N3Ts="; 20 }; 21 22 - build-system = [ 23 - poetry-core 24 - ]; 25 26 - dependencies = [ 27 - llama-index-core 28 - ]; 29 30 # Tests are only available in the mono repo 31 doCheck = false; 32 33 - pythonImportsCheck = [ 34 - "llama_index.embeddings.openai" 35 - ]; 36 37 meta = with lib; { 38 description = "LlamaIndex Embeddings Integration for OpenAI";
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + llama-index-core, 6 + poetry-core, 7 + pythonOlder, 8 }: 9 10 buildPythonPackage rec { 11 pname = "llama-index-embeddings-openai"; 12 + version = "0.1.9"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 17 src = fetchPypi { 18 pname = "llama_index_embeddings_openai"; 19 inherit version; 20 + hash = "sha256-D9KSsvmgrUU0p5DWN0cmvIhYUxiAh+sBgWfc8jlkOSQ="; 21 }; 22 23 + build-system = [ poetry-core ]; 24 25 + dependencies = [ llama-index-core ]; 26 27 # Tests are only available in the mono repo 28 doCheck = false; 29 30 + pythonImportsCheck = [ "llama_index.embeddings.openai" ]; 31 32 meta = with lib; { 33 description = "LlamaIndex Embeddings Integration for OpenAI";
+12 -17
pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , poetry-core 5 - , llama-index-core 6 - , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "llama-index-indices-managed-llama-cloud"; 11 - version = "0.1.5"; 12 pyproject = true; 13 14 disabled = pythonOlder "3.8"; ··· 16 src = fetchPypi { 17 pname = "llama_index_indices_managed_llama_cloud"; 18 inherit version; 19 - hash = "sha256-R83enwa73dUI8O/PQd5CXoUXGsLI/ail+yqJZz4cjHE="; 20 }; 21 22 - build-system = [ 23 - poetry-core 24 - ]; 25 26 - dependencies = [ 27 - llama-index-core 28 - ]; 29 30 # Tests are only available in the mono repo 31 doCheck = false; 32 33 - pythonImportsCheck = [ 34 - "llama_index.indices.managed.llama_cloud" 35 - ]; 36 37 meta = with lib; { 38 description = "LlamaCloud Index and Retriever";
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + poetry-core, 6 + llama-index-core, 7 + pythonOlder, 8 }: 9 10 buildPythonPackage rec { 11 pname = "llama-index-indices-managed-llama-cloud"; 12 + version = "0.1.6"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 17 src = fetchPypi { 18 pname = "llama_index_indices_managed_llama_cloud"; 19 inherit version; 20 + hash = "sha256-dLOw6ev500jTBU+fwMZXAxrM65NRwxEWrY1aeuRyn1w="; 21 }; 22 23 + build-system = [ poetry-core ]; 24 25 + dependencies = [ llama-index-core ]; 26 27 # Tests are only available in the mono repo 28 doCheck = false; 29 30 + pythonImportsCheck = [ "llama_index.indices.managed.llama_cloud" ]; 31 32 meta = with lib; { 33 description = "LlamaCloud Index and Retriever";
+2 -2
pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "llama-index-vector-stores-qdrant"; 14 - version = "0.2.7"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 19 src = fetchPypi { 20 pname = "llama_index_vector_stores_qdrant"; 21 inherit version; 22 - hash = "sha256-jVkNFNKghukf1H6yRO5nEj3jWzrn51Xm1g5kS5Kd6m0="; 23 }; 24 25 build-system = [ poetry-core ];
··· 11 12 buildPythonPackage rec { 13 pname = "llama-index-vector-stores-qdrant"; 14 + version = "0.2.8"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 19 src = fetchPypi { 20 pname = "llama_index_vector_stores_qdrant"; 21 inherit version; 22 + hash = "sha256-qeKV7jlBTujUEYMcPCS+PAD6xRlTBVi/DGJZ/MSN64A="; 23 }; 24 25 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/llamaindex-py-client/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "llamaindex-py-client"; 13 - version = "0.1.18"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; ··· 18 src = fetchPypi { 19 pname = "llamaindex_py_client"; 20 inherit version; 21 - hash = "sha256-CR7kmpJZLjiUd3reElFsITcJP51kQaVJ9AZGGRfOm34="; 22 }; 23 24 build-system = [ poetry-core ];
··· 10 11 buildPythonPackage rec { 12 pname = "llamaindex-py-client"; 13 + version = "0.1.19"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; ··· 18 src = fetchPypi { 19 pname = "llamaindex_py_client"; 20 inherit version; 21 + hash = "sha256-c/dHkruMCSuubcYmYnoJrBOgmfqNEPj8yD4XorMyzKc="; 22 }; 23 24 build-system = [ poetry-core ];