nixpkgs/pkgs/development/python-modules/llama-index-embeddings-openai/default.nix
Fabian Affolter bba1a41e54 python311Packages.llama-index-embeddings-openai: 0.10.22 -> 0.1.7
No longe ruse mono repo for the source as the release cycles don't
match
2024-03-26 10:02:43 +01:00

44 lines
903 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, llama-index-core
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "llama-index-embeddings-openai";
version = "0.1.7";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "llama_index_embeddings_openai";
inherit version;
hash = "sha256-xxzJggaAxM7fyYRdyHuU9oUdHMzh5Ib8kSmPj6jZ8n0=";
};
build-system = [
poetry-core
];
dependencies = [
llama-index-core
];
# Tests are only available in the mono repo
doCheck = false;
pythonImportsCheck = [
"llama_index.embeddings.openai"
];
meta = with lib; {
description = "LlamaIndex Embeddings Integration for OpenAI";
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/readers/llama-index-readers-s3";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}