19 buildPythonPackage rec {
20 pname = "apscheduler";
22 format = "setuptools";
24 disabled = pythonOlder "3.7";
27 pname = "APScheduler";
29 hash = "sha256-5t8HGyfZvomOSGvHlAp75QtK8unafAjwdEqW1L1M70o=";
36 propagatedBuildInputs = [
53 substituteInPlace setup.cfg \
54 --replace " --cov --tb=short" ""
59 # gevent tests have issue on newer Python releases
61 "test_add_pending_job"
63 ] ++ lib.optionals stdenv.isDarwin [
68 pythonImportsCheck = [
73 description = "Library that lets you schedule your Python code to be executed";
74 homepage = "https://github.com/agronholm/apscheduler";
75 license = licenses.mit;
76 maintainers = with maintainers; [ ];