From 132b69fc495d49f9b2143fa51762fd33822c32bd Mon Sep 17 00:00:00 2001 From: Kirill Radzikhovskyy Date: Sun, 22 Mar 2026 12:40:44 +1100 Subject: [PATCH] python3Packages.escapism: enable tests --- pkgs/development/python-modules/escapism/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/escapism/default.nix b/pkgs/development/python-modules/escapism/default.nix index 93a8517d5baf..b06eea03edb9 100644 --- a/pkgs/development/python-modules/escapism/default.nix +++ b/pkgs/development/python-modules/escapism/default.nix @@ -4,6 +4,7 @@ fetchPypi, setuptools, setuptools-scm, + pytestCheckHook, }: buildPythonPackage rec { @@ -21,8 +22,9 @@ buildPythonPackage rec { setuptools-scm ]; - # No tests distributed - doCheck = false; + nativeCheckInputs = [ + pytestCheckHook + ]; meta = { description = "Simple, generic API for escaping strings";