From dc206cd60d972610bfcb23f573fca7e777f992c9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 19 Mar 2023 11:35:07 +0100 Subject: [PATCH] python310Packages.transaction: add pythonImportsCheck --- pkgs/development/python-modules/transaction/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/transaction/default.nix b/pkgs/development/python-modules/transaction/default.nix index e7f54db84e56..12a86a134457 100644 --- a/pkgs/development/python-modules/transaction/default.nix +++ b/pkgs/development/python-modules/transaction/default.nix @@ -23,6 +23,10 @@ buildPythonPackage rec { mock ]; + pythonImportsCheck = [ + "transaction" + ]; + meta = with lib; { description = "Transaction management"; homepage = "https://transaction.readthedocs.io/";