From b7cedafeb610c499e06550d7da9037d669d20d57 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 26 Nov 2023 23:19:34 +0100 Subject: [PATCH] python311Packages.construct: add pythonImportsCheck --- pkgs/development/python-modules/construct/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/construct/default.nix b/pkgs/development/python-modules/construct/default.nix index 65d4b68677a7..c2ebfa45abb4 100644 --- a/pkgs/development/python-modules/construct/default.nix +++ b/pkgs/development/python-modules/construct/default.nix @@ -24,6 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook numpy arrow ruamel-yaml cloudpickle ]; + pythonImportsCheck = [ + "construct" + ]; + disabledTests = [ "test_benchmarks" ] ++ lib.optionals stdenv.isDarwin [ "test_multiprocessing" ]; meta = with lib; {