1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5 poetry-core, 6 requests, 7}: 8 9buildPythonPackage rec { 10 pname = "pinecone-plugin-assistant"; 11 version = "1.8.0"; 12 13 pyproject = true; 14 15 src = fetchPypi { 16 pname = "pinecone_plugin_assistant"; 17 inherit version; 18 hash = "sha256-joaCz/MPm66SQ7OEAhq6cckfTm7xZQ6dY+5kqrg8uoc="; 19 }; 20 21 build-system = [ 22 poetry-core 23 ]; 24 25 dependencies = [ 26 requests 27 ]; 28 29 pythonRelaxDeps = [ 30 "packaging" 31 ]; 32 33 meta = { 34 homepage = "https://www.pinecone.io/"; 35 maintainers = with lib.maintainers; [ codgician ]; 36 license = lib.licenses.asl20; 37 platforms = lib.platforms.unix; 38 description = "Assistant plugin for Pinecone SDK"; 39 }; 40}