From c7538052561677dbae881176b16e8abb57f5f953 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Mon, 20 Jul 2026 01:35:19 +0200 Subject: [PATCH] python3Packages.deep-chainmap: enable tests --- pkgs/development/python-modules/deep-chainmap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/deep-chainmap/default.nix b/pkgs/development/python-modules/deep-chainmap/default.nix index be67bf1198f1..f022e781c8fd 100644 --- a/pkgs/development/python-modules/deep-chainmap/default.nix +++ b/pkgs/development/python-modules/deep-chainmap/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchPypi, flit-core, + pytestCheckHook, }: buildPythonPackage rec { @@ -18,8 +19,7 @@ buildPythonPackage rec { build-system = [ flit-core ]; - # Tests are not published to pypi - doCheck = false; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "deep_chainmap" ];