[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/12: gnu: Add python-apscheduler.
From: |
guix-commits |
Subject: |
02/12: gnu: Add python-apscheduler. |
Date: |
Sun, 18 Feb 2024 07:23:15 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 96895a65b41cc273e53cfb4665400671d83a046c
Author: Giacomo Leidi <goodoldpaul@autistici.org>
AuthorDate: Mon Jan 15 23:49:35 2024 +0100
gnu: Add python-apscheduler.
* gnu/packages/python-xyz.scm (python-apscheduler): New variable.
Change-Id: Ib5964520a8d3c9c4711ba2ee4c5812241dc93423
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2dd8a12af5..4aa0271de2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27992,6 +27992,42 @@ format.")
access the system cron automatically and simply using a direct API.")
(license license:lgpl3+)))
+(define-public python-apscheduler
+ (package
+ (name "python-apscheduler")
+ (version "3.10.4")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "APScheduler" version))
+ (sha256
+ (base32
+ "0jpg9jyx95jafkq0hz6sx7r4l2z5gc599ivb9278kgnr4wdhgpz6"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-pytz
+ python-six
+ python-tzlocal))
+ (native-inputs (list python-mock
+ python-twisted
+ python-gevent
+ python-setuptools-scm
+ python-sqlalchemy
+ python-pyside-6
+ python-pytest
+ python-pytest-asyncio
+ python-pytest-cov
+ python-pytest-tornado5))
+ (home-page "https://github.com/agronholm/apscheduler")
+ (synopsis "Task scheduling library for Python")
+ (description "Advanced Python Scheduler (APScheduler) is a Python library
+that lets you schedule your Python code to be executed later, either just once
+or periodically.
+
+You can add new jobs or remove old ones on the fly as you please. If you store
+your jobs in a database, they will also survive scheduler restarts and maintain
+their state. When the scheduler is restarted, it will then run all the jobs it
+should have run while it was offline.")
+ (license license:expat)))
+
(define-public python-pylzma
(package
(name "python-pylzma")
- branch master updated (3cf199dbcf -> 2f1ed825af), guix-commits, 2024/02/18
- 01/12: gnu: Add python-pytest-tornado5., guix-commits, 2024/02/18
- 02/12: gnu: Add python-apscheduler.,
guix-commits <=
- 03/12: gnu: python-crontab: Enable tests., guix-commits, 2024/02/18
- 05/12: gnu: python-zeroconf: Simplify package., guix-commits, 2024/02/18
- 04/12: gnu: python-crontab: Update to 3.0.0., guix-commits, 2024/02/18
- 08/12: gnu: python-humanize: Update to 4.0.0., guix-commits, 2024/02/18
- 09/12: gnu: python-watchdog: Simplify package., guix-commits, 2024/02/18
- 10/12: gnu: python-devtools: Update to 0.12.2, fix build., guix-commits, 2024/02/18
- 11/12: gnu: python-simpervisor: Update to 1.0.0., guix-commits, 2024/02/18
- 06/12: gnu: python-xyzservices: Simplify package., guix-commits, 2024/02/18
- 07/12: gnu: python-trio-websocket: Simplify package., guix-commits, 2024/02/18
- 12/12: gnu: python-simpervisor: Enable tests., guix-commits, 2024/02/18