c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
62 lines
984 B
Nix
62 lines
984 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, poetry-core
|
|
, pythonRelaxDepsHook
|
|
, numpy
|
|
, pyyaml
|
|
, python-dateutil
|
|
, urllib3
|
|
, tqdm
|
|
, dnspython
|
|
, requests
|
|
, typing-extensions
|
|
, loguru
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pinecone-client";
|
|
version = "3.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "pinecone_client";
|
|
inherit version;
|
|
hash = "sha256-RbggYBP5GpgrmU8fuqOefoyZ0w7zd4qfMZxDuMmS/EI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
pyyaml
|
|
python-dateutil
|
|
urllib3
|
|
tqdm
|
|
dnspython
|
|
requests
|
|
typing-extensions
|
|
loguru
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"urllib3"
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pinecone"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.pinecone.io/";
|
|
description = "The Pinecone python client";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|