From 0f69eb4a86760b27cbc1e1b178a28662992b718b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 5 Nov 2025 09:17:14 -0800 Subject: [PATCH] python312Packages.holidays: run tests --- pkgs/development/python-modules/holidays/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/holidays/default.nix b/pkgs/development/python-modules/holidays/default.nix index daab511cebc4..fc76273c14c9 100644 --- a/pkgs/development/python-modules/holidays/default.nix +++ b/pkgs/development/python-modules/holidays/default.nix @@ -5,7 +5,9 @@ fetchFromGitHub, importlib-metadata, lingva, + numpy, polib, + pytest-cov-stub, pytestCheckHook, python-dateutil, setuptools, @@ -44,11 +46,11 @@ buildPythonPackage rec { dependencies = [ python-dateutil ]; - doCheck = false; - nativeCheckInputs = [ importlib-metadata + numpy polib + pytest-cov-stub pytestCheckHook ];