depot/third_party/nixpkgs/pkgs/development/python-modules/pinecone-client/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

64 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
dnspython,
fetchPypi,
loguru,
numpy,
poetry-core,
python-dateutil,
pythonOlder,
pyyaml,
requests,
setuptools,
tqdm,
typing-extensions,
urllib3,
}:
buildPythonPackage rec {
pname = "pinecone-client";
version = "4.1.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "pinecone_client";
inherit version;
hash = "sha256-sueMKd5QwYDb/nXhXwjIfsGjpPG8ayvh8Myu4atENPo=";
};
pythonRelaxDeps = [ "urllib3" ];
build-system = [
setuptools
poetry-core
];
dependencies = [
dnspython
loguru
numpy
python-dateutil
pyyaml
requests
tqdm
typing-extensions
urllib3
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "pinecone" ];
meta = with lib; {
description = "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 ];
};
}