From 39767f902ebfc8ecd9722ee085cad51e0100aac7 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Thu, 17 Jul 2025 11:41:21 +0200 Subject: [PATCH 1/2] python3Packages.pgvector: temporarily disable checkPhase Let's disable the checkPhase to unbreak the package and its dependencies until https://github.com/NixOS/nixpkgs/pull/425384 is properly solved. --- pkgs/development/python-modules/pgvector/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pgvector/default.nix b/pkgs/development/python-modules/pgvector/default.nix index cc604bc87997..377535d893c8 100644 --- a/pkgs/development/python-modules/pgvector/default.nix +++ b/pkgs/development/python-modules/pgvector/default.nix @@ -42,6 +42,10 @@ buildPythonPackage rec { dependencies = [ numpy ]; + # Temporarily disabled until the following is solved: + # https://github.com/NixOS/nixpkgs/pull/425384 + doCheck = false; + nativeCheckInputs = [ asyncpg django From 6dee2b6377c673da32fdc08289f59c304a77043f Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Thu, 17 Jul 2025 14:46:10 +0200 Subject: [PATCH 2/2] python3Packages.langgraph-checkpoint-postgres: temporarily disable checkPhase See previous commit for rationale. --- .../python-modules/langgraph-checkpoint-postgres/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix b/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix index 8a6b11d164e9..aec6964b2c61 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix @@ -58,7 +58,10 @@ buildPythonPackage rec { "psycopg-pool" ]; - doCheck = !(stdenvNoCC.hostPlatform.isDarwin); + # Temporarily disabled until the following is solved: + # https://github.com/NixOS/nixpkgs/pull/425384 + doCheck = false; + # doCheck = !(stdenvNoCC.hostPlatform.isDarwin); nativeCheckInputs = [ pytest-asyncio