From 4115d284e1f70602d008a0bb907407b7abe6a273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20He=C3=9Felmann?= Date: Thu, 26 Mar 2026 10:38:15 +0100 Subject: [PATCH] fix: disable ldap tests --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 64a8a03..6636a06 100644 --- a/flake.nix +++ b/flake.nix @@ -59,7 +59,8 @@ # Add Python packages here. python-pkgs = ps: [ - ps.python-ldap # Dependency of aws-saml.py + # Dependency of aws-saml.py; tests require slapd which fails in Nix sandbox. + (ps.python-ldap.overridePythonAttrs (_: { doCheck = false; })) ps.pyyaml ]; in