python312Packages.pinecone-plugin-interface: init at 0.0.7

This commit is contained in:
wxt
2024-12-25 20:23:06 +08:00
parent bd7b083573
commit 0b9c9f85cd
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,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";
};
}
+2
View File
@@ -10270,6 +10270,8 @@ self: super: with self; {
pinecone-client = callPackage ../development/python-modules/pinecone-client { };
pinecone-plugin-interface = callPackage ../development/python-modules/pinecone-plugin-interface { };
psrpcore = callPackage ../development/python-modules/psrpcore { };
pyaprilaire = callPackage ../development/python-modules/pyaprilaire { };