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

python311Packages.pinecone-client: 4.0.0 -> 4.1.0
This commit is contained in:
Fabian Affolter 2024-05-16 10:43:11 +02:00 committed by GitHub
commit 6a860ac01c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,24 +1,25 @@
{ lib
, buildPythonPackage
, dnspython
, fetchPypi
, loguru
, numpy
, poetry-core
, python-dateutil
, pythonOlder
, pythonRelaxDepsHook
, pyyaml
, requests
, setuptools
, tqdm
, typing-extensions
, urllib3
{
lib,
buildPythonPackage,
dnspython,
fetchPypi,
loguru,
numpy,
poetry-core,
python-dateutil,
pythonOlder,
pythonRelaxDepsHook,
pyyaml,
requests,
setuptools,
tqdm,
typing-extensions,
urllib3,
}:
buildPythonPackage rec {
pname = "pinecone-client";
version = "4.0.0";
version = "4.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -26,16 +27,12 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "pinecone_client";
inherit version;
hash = "sha256-1E2yEuZKo0PRTvybCOnkXZi6e2gfYymLhwM1QuoBfyM=";
hash = "sha256-QgYqYo56lB0Lwku4r7Am861NJkzwbWpiej3lgyFK494=";
};
pythonRelaxDeps = [
"urllib3"
];
pythonRelaxDeps = [ "urllib3" ];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
build-system = [
setuptools
@ -57,9 +54,7 @@ buildPythonPackage rec {
# Tests require network access
doCheck = false;
pythonImportsCheck = [
"pinecone"
];
pythonImportsCheck = [ "pinecone" ];
meta = with lib; {
description = "The Pinecone python client";