From 1af710178701f68e91f40555f5bcb89ac257907f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 12 Nov 2023 13:43:24 +0100 Subject: [PATCH] python310Packages.unicodedata2: add pythonImportsCheck --- pkgs/development/python-modules/unicodedata2/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/unicodedata2/default.nix b/pkgs/development/python-modules/unicodedata2/default.nix index 25dcbd7c37f3..972aa3093a8c 100644 --- a/pkgs/development/python-modules/unicodedata2/default.nix +++ b/pkgs/development/python-modules/unicodedata2/default.nix @@ -21,6 +21,10 @@ buildPythonPackage rec { pytestCheckHook ]; + pythonImportsCheck = [ + "unicodedata2" + ]; + meta = with lib; { description = "Backport and updates for the unicodedata module"; homepage = "https://github.com/mikekap/unicodedata2";