python310Packages.mdit-py-plugins: remove unused disableTests option

This commit is contained in:
Sandro Jäckel 2023-02-27 21:35:30 +01:00
parent 6700d67d8c
commit 2f0dc85819
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -6,9 +6,6 @@
, markdown-it-py
, pytest-regressions
, pytestCheckHook
# allow disabling tests for the nixos manual build.
# the test suite closure is just too large.
, disableTests ? false
}:
buildPythonPackage rec {
@ -33,7 +30,7 @@ buildPythonPackage rec {
markdown-it-py
];
nativeCheckInputs = lib.optionals (!disableTests) [
nativeCheckInputs = [
pytestCheckHook
pytest-regressions
];