Commit 8510fcad authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pinecone-client: format with nixfmt

parent 7e7c30cd
Loading
Loading
Loading
Loading
+20 −25
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 {
@@ -29,13 +30,9 @@ buildPythonPackage rec {
    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";