python3Packages.markdown-it-py: Pass py into checkInputs

and disable benchmark tests.
This commit is contained in:
Martin Weinelt 2022-12-31 15:16:10 +01:00
parent 32461c69ea
commit f5c98592d0

View file

@ -6,6 +6,7 @@
, linkify-it-py , linkify-it-py
, mdurl , mdurl
, psutil , psutil
, py
, pytest-benchmark , pytest-benchmark
, pytest-regressions , pytest-regressions
, pytestCheckHook , pytestCheckHook
@ -41,11 +42,16 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
psutil psutil
py
pytest-benchmark pytest-benchmark
pytest-regressions pytest-regressions
pytestCheckHook pytestCheckHook
]; ];
pytestFlagsArray = [
"--benchmark-skip"
];
pythonImportsCheck = [ pythonImportsCheck = [
"markdown_it" "markdown_it"
]; ];