Unverified Commit f780f1f7 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.apscheduler: 3.11.0 -> 3.11.1 (#459810)

parents 9c69559d 95acb919
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@

buildPythonPackage rec {
  pname = "apscheduler";
  version = "3.11.0";
  version = "3.11.1";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -28,7 +28,7 @@ buildPythonPackage rec {
    owner = "agronholm";
    repo = "apscheduler";
    tag = version;
    hash = "sha256-tFEm9yXf8CqcipSYtM7JM6WQ5Qm0YtgWhZvZOBAzy+w=";
    hash = "sha256-3KSW1RdiUXlDTr30Wrc8fYb4rRnlOn6lVhBgz3r1D/4=";
  };

  postPatch = ''
@@ -69,10 +69,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "apscheduler" ];

  meta = with lib; {
  meta = {
    changelog = "https://github.com/agronholm/apscheduler/releases/tag/${src.tag}";
    description = "Library that lets you schedule your Python code to be executed";
    homepage = "https://github.com/agronholm/apscheduler";
    license = licenses.mit;
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}