From a9f3221c887249f1a1d08eadfc77f85d13a84b72 Mon Sep 17 00:00:00 2001 From: codgician <15964984+codgician@users.noreply.github.com> Date: Wed, 25 Feb 2026 20:42:44 +0800 Subject: [PATCH] python3Packages.pinecone-client: 8.0.0 -> 8.1.0 --- .../pinecone-client/default.nix | 36 +++++++------------ 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/pkgs/development/python-modules/pinecone-client/default.nix b/pkgs/development/python-modules/pinecone-client/default.nix index 4d08354b6eeb..dabbfa6bf441 100644 --- a/pkgs/development/python-modules/pinecone-client/default.nix +++ b/pkgs/development/python-modules/pinecone-client/default.nix @@ -1,49 +1,37 @@ { lib, buildPythonPackage, - dnspython, + certifi, fetchFromGitHub, - loguru, - numpy, - poetry-core, - python-dateutil, - pyyaml, - requests, - setuptools, - tqdm, - typing-extensions, + hatchling, + orjson, pinecone-plugin-assistant, pinecone-plugin-interface, + python-dateutil, + typing-extensions, urllib3, }: buildPythonPackage rec { pname = "pinecone-client"; - version = "8.0.0"; + version = "8.1.0"; pyproject = true; src = fetchFromGitHub { owner = "pinecone-io"; repo = "pinecone-python-client"; tag = "v${version}"; - hash = "sha256-4oj1TBVykWvPtmfdRUgRojTds9bCWj9XOrcNRzUspKA="; + hash = "sha256-rXsCaH8SbMttBQWfF8Gy6hz+PVboxkLJZCs0/o6lAEI="; }; - build-system = [ - setuptools - poetry-core - ]; + build-system = [ hatchling ]; dependencies = [ - dnspython - loguru - numpy - python-dateutil + certifi + orjson pinecone-plugin-assistant pinecone-plugin-interface - pyyaml - requests - tqdm + python-dateutil typing-extensions urllib3 ]; @@ -54,7 +42,7 @@ buildPythonPackage rec { description = "Pinecone python client"; homepage = "https://www.pinecone.io/"; changelog = "https://github.com/pinecone-io/pinecone-python-client/releases/tag/${src.tag}"; - license = lib.licenses.mit; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ happysalada ]; }; }