diff --git a/pkgs/development/python-modules/pinecone-plugin-assistant/default.nix b/pkgs/development/python-modules/pinecone-plugin-assistant/default.nix deleted file mode 100644 index 9c3e3999bf11..000000000000 --- a/pkgs/development/python-modules/pinecone-plugin-assistant/default.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ - buildPythonPackage, - lib, - fetchPypi, - poetry-core, - requests, -}: - -buildPythonPackage rec { - pname = "pinecone-plugin-assistant"; - version = "3.0.3"; - - pyproject = true; - - src = fetchPypi { - pname = "pinecone_plugin_assistant"; - inherit version; - hash = "sha256-U/VI7eYKldef9I14ZaPQr9Zlztnnd1gnLmK6DGxjvSY="; - }; - - build-system = [ - poetry-core - ]; - - dependencies = [ - requests - ]; - - pythonRelaxDeps = [ - "packaging" - ]; - - meta = { - homepage = "https://www.pinecone.io/"; - maintainers = with lib.maintainers; [ codgician ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - description = "Assistant plugin for Pinecone SDK"; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 8bf5bbd7afc4..4f5b8e5894fd 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -439,6 +439,7 @@ mapAliases { pilight = throw "'pilight' has been removed, because it is unmaintained since 2019 and the integration was removed from Home Assistant."; # added 2026-05-06 pillow-avif-plugin = throw "'pillow-avif-plugin' has been removed because 'pillow' has native avif support since 11.3"; # added 2025-11-26 pinecone-client = warnAlias "'pinecone-client' has been renamed to 'pinecone'" pinecone; # added 2026-07-22 + pinecone-plugin-assistant = throw "'pinecone-plugin-assistant' has been integrated into 'pinecone-client'"; # Added 2026-07-22 pizzapi = throw "pizzapi was removed because it no longer works"; # added 2025-12-03 pkuseg = throw "'pkuseg' has been removed because it was not supported on newer versions of Python"; # added 2026-01-20 ploomber-extension = throw "'ploomber-extension' has been removed since the upstream repo was archived"; # added 2026-02-16 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2269cf176447..64a9cf413c4d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13199,8 +13199,6 @@ self: super: with self; { pinecone = callPackage ../development/python-modules/pinecone { }; - pinecone-plugin-assistant = callPackage ../development/python-modules/pinecone-plugin-assistant { }; - pinecone-plugin-interface = callPackage ../development/python-modules/pinecone-plugin-interface { }; ping3 = callPackage ../development/python-modules/ping3 { };