9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/${version}";
20 hash = "sha256-TSVFkMCMmrMXaPJPPNjIML+z98i1iIYuKH7hHiZnJkg=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "cronsim" ];
28 description = "Cron expression parser and evaluator";
29 homepage = "https://github.com/cuu508/cronsim";
30 license = licenses.bsd3;
31 maintainers = with maintainers; [ phaer ];