blob: 9cbabf17e9e3ef68f4e7d0c5b555ab81f9cc9236 (
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
32
33
34
35
36
37
38
39
40
|
{
buildPythonPackage,
lib,
fetchPypi,
poetry-core,
requests,
}:
buildPythonPackage rec {
pname = "pinecone-plugin-assistant";
version = "1.8.0";
pyproject = true;
src = fetchPypi {
pname = "pinecone_plugin_assistant";
inherit version;
hash = "sha256-joaCz/MPm66SQ7OEAhq6cckfTm7xZQ6dY+5kqrg8uoc=";
};
build-system = [
poetry-core
];
dependencies = [
requests
];
pythonRelaxDeps = [
"packaging"
];
meta = {
homepage = "https://www.pinecone.io/";
maintainers = with lib.maintainers; [ codgician ];
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
description = "Assistant plugin for Pinecone SDK";
};
}
|