python3Packages.croniter: use pytestCheckHook

This commit is contained in:
Robert Schütz 2021-03-24 09:41:47 +01:00
parent 7352df865a
commit ec7ff8b0dc

View file

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, python-dateutil
, pytest
, pytestCheckHook
, pytz
, natsort
, tzlocal
@ -23,15 +23,11 @@ buildPythonPackage rec {
];
checkInputs = [
pytest
pytestCheckHook
pytz
tzlocal
];
checkPhase = ''
pytest src/croniter
'';
meta = with lib; {
description = "croniter provides iteration for datetime object with cron like format";
homepage = "https://github.com/kiorky/croniter";