Merge pull request #313665 from fabaff/chromadb-aarch64

python312Packages.chromadb: limit platform support
This commit is contained in:
Weijia Wang 2024-05-23 07:54:32 +02:00 committed by GitHub
commit 10d2e39648
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,10 +150,11 @@ buildPythonPackage rec {
meta = with lib; {
description = "The AI-native open-source embedding database";
mainProgram = "chroma";
homepage = "https://github.com/chroma-core/chroma";
changelog = "https://github.com/chroma-core/chroma/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
mainProgram = "chroma";
broken = stdenv.isLinux && stdenv.isAarch64;
};
}