python3Packages.pinecone-client: 8.0.0 -> 8.1.0 (#494013)

This commit is contained in:
Yt
2026-02-25 23:18:45 +00:00
committed by GitHub
@@ -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 ];
};
}