From 3099bd3f2268b30002649d7e423bdc7409906963 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 14 Jul 2026 01:51:50 +0200 Subject: [PATCH] python3Packages.gwcs: add pytest-doctestplus to test deps > ERROR: Unknown config option: doctest_plus --- pkgs/development/python-modules/gwcs/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/gwcs/default.nix b/pkgs/development/python-modules/gwcs/default.nix index 7053149a64d5..d808f4bdd6bc 100644 --- a/pkgs/development/python-modules/gwcs/default.nix +++ b/pkgs/development/python-modules/gwcs/default.nix @@ -7,6 +7,7 @@ buildPythonPackage, fetchFromGitHub, numpy, + pytest-doctestplus, pytestCheckHook, scipy, setuptools-scm, @@ -43,7 +44,10 @@ buildPythonPackage (finalAttrs: { scipy ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytest-doctestplus + pytestCheckHook + ]; pythonImportsCheck = [ "gwcs" ];