python3Packages.llama-index-embeddings-google: 0.4.1 -> 0.4.2 (#484781)

This commit is contained in:
Fabian Affolter
2026-01-28 19:51:07 +00:00
committed by GitHub
@@ -7,15 +7,15 @@
hatchling,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "llama-index-embeddings-google";
version = "0.4.1";
version = "0.4.2";
pyproject = true;
src = fetchPypi {
pname = "llama_index_embeddings_google";
inherit version;
hash = "sha256-bVVg+oHf8KPb04F/HE/2XVkn4NY/Bb+PPj3fypkJ/zE=";
inherit (finalAttrs) version;
hash = "sha256-dWV2fKudLsxfpHTGrGljMBU62vYUqzf8NarQ3Nl9poI=";
};
pythonRelaxDeps = [ "google-generativeai" ];
@@ -38,4 +38,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})