{ lib , buildPythonPackage , fetchPypi , python-dateutil , pytestCheckHook , pytz , natsort , tzlocal }: buildPythonPackage rec { pname = "croniter"; version = "1.0.13"; src = fetchPypi { inherit pname version; sha256 = "sha256-V/Nt9PWhwxu/ULv/o1UWEsGfYVarHoji5CNCzLufm5o="; }; propagatedBuildInputs = [ python-dateutil natsort ]; checkInputs = [ pytestCheckHook pytz tzlocal ]; pythonImportsCheck = [ "croniter" ]; meta = with lib; { description = "croniter provides iteration for datetime object with cron like format"; homepage = "https://github.com/kiorky/croniter"; license = licenses.mit; maintainers = [ maintainers.costrouc ]; }; }