blob: 69ad39d108fda7734ef965b6c57611e2e6b171de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
buildPythonPackage,
lib,
fetchPypi,
poetry-core,
}:
buildPythonPackage rec {
pname = "pinecone-plugin-interface";
version = "0.0.7";
pyproject = true;
src = fetchPypi {
pname = "pinecone_plugin_interface";
inherit version;
hash = "sha256-uOZnXkGEczOqE5I8xE2qP4VnbXFXMkaC3BZAWIqYKEY=";
};
build-system = [
poetry-core
];
meta = {
homepage = "https://www.pinecone.io/";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
description = "Plugin interface for the Pinecone python client";
};
}
|