python310Packages.Mako: Add missing check dependency

This commit is contained in:
Jonas Heinrich 2022-07-26 10:19:38 +02:00
parent f2e43c14df
commit 2a4169019e

View File

@ -13,6 +13,8 @@
# tests
, mock
, pytestCheckHook
, lingua
, chameleon
}:
buildPythonPackage rec {
@ -37,8 +39,10 @@ buildPythonPackage rec {
};
checkInputs = [
pytestCheckHook
chameleon
lingua
mock
pytestCheckHook
] ++ passthru.optional-dependencies.babel;
disabledTests = lib.optionals isPyPy [
@ -51,11 +55,6 @@ buildPythonPackage rec {
"test_bytestring_passthru"
];
disabledTestPaths = [
# lingua dependency is not packaged
"test/ext/test_linguaplugin.py"
];
meta = with lib; {
description = "Super-fast templating language";
homepage = "https://www.makotemplates.org/";