summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-25 19:32:31 -0300
committerVinicius Monego <monego@posteo.net>2025-06-26 00:42:00 -0300
commit5b3ac6e4130c0559c58c674af6f74032de11a578 (patch)
tree6aa53f8c8873912db78080fd3598ffd57b5491a2
parent7d57257b09a7de334ed5896fdfe26d2f1d51cfa9 (diff)
gnu: python-schedule: Update to 1.2.2.
* gnu/packages/python-xyz.scm (python-schedule): Update to 1.2.2. [source]: Remove unnecessary snippet. [build-system]: Use pyproject-build-system. [native-inputs]: Remove python-mock. Add python-setuptools, python-wheel. Change-Id: Ib5276ba608bff46d20171b121cb2d667c03954f8
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 4 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7f5933a359..995a06c6ca 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5509,22 +5509,17 @@ in the current session, Python, and the OS.")
(define-public python-schedule
(package
(name "python-schedule")
- (version "0.4.3")
+ (version "1.2.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "schedule" version))
(sha256
(base32
- "0vplyjcbfrq50sphlwya749z8p2pcyi2nycw3518i0qpd9a6189i"))
- (snippet
- #~(begin (use-modules (guix build utils))
- (substitute* "schedule/__init__.py"
- (("collections\\.Hashable")
- "collections.abc.Hashable"))))))
- (build-system python-build-system)
+ "1dzhwpnpbvv90z6lavx4z7whh1a2y47cq69zgxibknazzrsrrzhm"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-mock))
+ (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/dbader/schedule")
(synopsis "Schedule periodic function calls in Python")
(description