guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

31/57: gnu: Add python-croniter.


From: guix-commits
Subject: 31/57: gnu: Add python-croniter.
Date: Tue, 22 Sep 2020 12:43:38 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 8c9365047b8ae041e6230ef5a72d6cf6f27a7521
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Sep 1 14:07:18 2020 +0200

    gnu: Add python-croniter.
    
    * gnu/packages/python-xyz.scm (python-croniter): New public variable.
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e14f4c7..3094b07 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19442,6 +19442,27 @@ file-based data structures that are @code{mmap}ped 
into memory so that many
 processes may share the same data.")
     (license license:asl2.0)))
 
+(define-public python-croniter
+  (package
+    (name "python-croniter")
+    (version "0.3.34")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "croniter" version))
+              (sha256
+               (base32
+                "0r79cx4v2dw4hzr0annkkxxis46c8hivq61sr39z6p7lcjsbk1ki"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-dateutil" ,python-dateutil)
+       ("python-natsort" ,python-natsort)))
+    (home-page "https://github.com/kiorky/croniter";)
+    (synopsis "Iterate datetime objects with cron-like syntax")
+    (description
+     "@code{croniter} provides iteration for datetime object with cron-like
+format.")
+    (license license:expat)))
+
 (define-public python-pylzma
   (package
     (name "python-pylzma")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]