Unverified Commit 6a860ac0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.pinecone-client: 4.0.0 -> 4.1.0
parents 0c2fbf0c 8510fcad
Loading
Loading
Loading
Loading
+22 −27
Original line number Diff line number Diff line
{ 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";