From fadcefac50e6d25738c81548ffb914d33a5e0049 Mon Sep 17 00:00:00 2001 From: Dvd-Znf Date: Thu, 11 Dec 2025 21:58:32 +0100 Subject: [PATCH] python3Packages.chromadb: 1.3.5 -> 1.3.6 - Release notes: https://github.com/chroma-core/chroma/releases/tag/1.3.6 --- .../development/python-modules/chromadb/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/chromadb/default.nix b/pkgs/development/python-modules/chromadb/default.nix index 138407f9c35d..07f8b5ee993f 100644 --- a/pkgs/development/python-modules/chromadb/default.nix +++ b/pkgs/development/python-modules/chromadb/default.nix @@ -67,19 +67,19 @@ buildPythonPackage rec { pname = "chromadb"; - version = "1.3.5"; + version = "1.3.6"; pyproject = true; src = fetchFromGitHub { owner = "chroma-core"; repo = "chroma"; tag = version; - hash = "sha256-pIVoPW7Sdc3XN66SuA6IILQkhoNwqy/X4OWgW08CC58="; + hash = "sha256-J1IhFF8HPpWfYmIaU1mot1dcuGyQm+IfE7goThaC9F0="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-3cY9d28dE7Ndh0o1MiBLSwRggkjjnXRcnmsvC2t5S7A="; + hash = "sha256-hjN+pHMTWin6oXpy3PiH9rrRfM4P/KJ2VyenJHkWAkI="; }; # Can't use fetchFromGitHub as the build expects a zipfile @@ -216,6 +216,9 @@ buildPythonPackage rec { # No such file or directory: 'openssl' "test_ssl_self_signed_without_ssl_verify" "test_ssl_self_signed" + + # https://github.com/chroma-core/chroma/issues/6029 + "test_embedding_function_config_roundtrip" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Fails in nixpkgs-review on Darwin due to concurrent copies running and the lack of network namespaces. @@ -236,6 +239,10 @@ buildPythonPackage rec { # ValueError: An instance of Chroma already exists for ephemeral with different settings "chromadb/test/test_chroma.py" + + # pytest can't tell which test_schema.py to load + # https://github.com/chroma-core/chroma/issues/6031 + "chromadb/test/property/test_schema.py" ]; __darwinAllowLocalNetworking = true;