From 062e14e2f9b1f544a0d7355394553670c31cebfc Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 13 Jul 2026 23:48:29 +0200 Subject: [PATCH] python3Packages.cwsandbox: provide pytest-dotenv for tests Pytest 9.1 fails hard when there are unhandled settings in its config. --- pkgs/development/python-modules/cwsandbox/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/cwsandbox/default.nix b/pkgs/development/python-modules/cwsandbox/default.nix index 33f1ddd727c6..cfba92ff6376 100644 --- a/pkgs/development/python-modules/cwsandbox/default.nix +++ b/pkgs/development/python-modules/cwsandbox/default.nix @@ -16,6 +16,7 @@ # tests pytest-asyncio, + pytest-dotenv, pytestCheckHook, }: @@ -55,6 +56,7 @@ buildPythonPackage (finalAttrs: { nativeCheckInputs = [ pytest-asyncio + pytest-dotenv pytestCheckHook ] ++ finalAttrs.passthru.optional-dependencies.cli;