From b3f2b745c4e8ef8c04a4c707ab7152bf42c54738 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 22 May 2024 22:47:22 +0200 Subject: [PATCH] python312Packages.chromadb: limit platform support --- pkgs/development/python-modules/chromadb/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/chromadb/default.nix b/pkgs/development/python-modules/chromadb/default.nix index 471b6111a93d..ed4c8d541a14 100644 --- a/pkgs/development/python-modules/chromadb/default.nix +++ b/pkgs/development/python-modules/chromadb/default.nix @@ -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; }; }