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