From 2eb5878bf05a8f898b1a062be74d6bf4b7151f99 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 12 Nov 2023 13:55:55 +0100 Subject: [PATCH] python310Packages.tableauserverclient: add pythonImportsCheck --- .../python-modules/tableauserverclient/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/tableauserverclient/default.nix b/pkgs/development/python-modules/tableauserverclient/default.nix index f87c975f5a2c..6bcdde6c7390 100644 --- a/pkgs/development/python-modules/tableauserverclient/default.nix +++ b/pkgs/development/python-modules/tableauserverclient/default.nix @@ -35,6 +35,10 @@ buildPythonPackage rec { # Tests attempt to create some file artifacts and fails doCheck = false; + pythonImportsCheck = [ + "tableauserverclient" + ]; + meta = with lib; { description = "Module for working with the Tableau Server REST API"; homepage = "https://github.com/tableau/server-client-python";