Unverified Commit 359cc883 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.llamaindex-py-client: drop (#506325)

parents 59ef049e 5c4c4ab1
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -13,7 +13,6 @@
  hatchling,
  jsonpath-ng,
  llama-index-workflows,
  llamaindex-py-client,
  nest-asyncio,
  networkx,
  nltk-data,
@@ -83,7 +82,6 @@ buildPythonPackage (finalAttrs: {
    fsspec
    jsonpath-ng
    llama-index-workflows
    llamaindex-py-client
    nest-asyncio
    networkx
    nltk
+0 −39
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  httpx,
  poetry-core,
  pydantic,
}:

buildPythonPackage rec {
  pname = "llamaindex-py-client";
  version = "0.1.19";
  pyproject = true;

  src = fetchPypi {
    pname = "llamaindex_py_client";
    inherit version;
    hash = "sha256-c/dHkruMCSuubcYmYnoJrBOgmfqNEPj8yD4XorMyzKc=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    httpx
    pydantic
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "llama_index_client" ];

  meta = {
    description = "Client for LlamaIndex";
    homepage = "https://pypi.org/project/llamaindex-py-client/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -308,6 +308,7 @@ mapAliases {
  llama-index-multi-modal-llms-openai = throw "'llama-index-multi-modal-llms-openai' has been removed as it was deprecated in favor of 'llama-index-llms-openai'"; # added 2026-03-25
  llama-index-readers-llama-parse = throw "'llama-index-readers-llama-parse' has been removed as it was deprecated upstream in favor of 'llama-cloud'"; # added 2026-03-25
  llama-parse = throw "'llama-parse' has been removed as it was deprecated upstream in favor of 'llama-cloud'"; # added 2026-03-25
  llamaindex-py-client = throw "'llamaindex-pyclient' has been removed as it was removed from upstream"; # Added 2026-04-03
  lmcloud = throw "'lmcloud' has been renamed to/replaced by 'pylamarzocco'"; # Converted to throw 2025-10-29
  logilab_common = throw "'logilab_common' has been renamed to/replaced by 'logilab-common'"; # Converted to throw 2025-10-29
  loo-py = throw "'loo-py' has been renamed to/replaced by 'loopy'"; # Converted to throw 2025-10-29
+0 −2
Original line number Diff line number Diff line
@@ -9115,8 +9115,6 @@ self: super: with self; {
  llama-stack-client = callPackage ../development/python-modules/llama-stack-client { };
  llamaindex-py-client = callPackage ../development/python-modules/llamaindex-py-client { };
  llfuse = callPackage ../development/python-modules/llfuse { inherit (pkgs) fuse; };
  llguidance = callPackage ../development/python-modules/llguidance { };