Merge pull request #301175 from r-ryantm/auto-update/python311Packages.pinecone-client

python311Packages.pinecone-client: 3.2.1 -> 3.2.2
This commit is contained in:
Yt 2024-04-03 22:55:55 +00:00 committed by GitHub
commit 463b249e78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,52 +1,60 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, poetry-core
, pythonRelaxDepsHook
, numpy
, pyyaml
, python-dateutil
, urllib3
, tqdm
, dnspython
, requests
, typing-extensions
, fetchPypi
, loguru
, numpy
, poetry-core
, python-dateutil
, pythonOlder
, pythonRelaxDepsHook
, pyyaml
, requests
, setuptools
, tqdm
, typing-extensions
, urllib3
}:
buildPythonPackage rec {
pname = "pinecone-client";
version = "3.2.1";
version = "3.2.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "pinecone_client";
inherit version;
hash = "sha256-hWD/r7E7nEWpLrnrd6LbMtWh+nkDodsX969Y7hBYu2A=";
hash = "sha256-iHoSQF+QrBHDlkkPYF/EefMc8oI2EDTRrg/MwCrHW+4=";
};
nativeBuildInputs = [
setuptools
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
numpy
pyyaml
python-dateutil
urllib3
tqdm
dnspython
requests
typing-extensions
loguru
];
pythonRelaxDeps = [
"urllib3"
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
build-system = [
setuptools
poetry-core
];
dependencies = [
dnspython
loguru
numpy
python-dateutil
pyyaml
requests
tqdm
typing-extensions
urllib3
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [
@ -54,8 +62,9 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://www.pinecone.io/";
description = "The Pinecone python client";
homepage = "https://www.pinecone.io/";
changelog = "https://github.com/pinecone-io/pinecone-python-client/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
};