guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: Add python-isoweek.


From: Danny Milosavljevic
Subject: 03/03: gnu: Add python-isoweek.
Date: Tue, 6 Feb 2018 06:13:38 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit 4283653cb02d67de186fc632e88eed74587e8546
Author: Konrad Hinsen <address@hidden>
Date:   Tue Feb 6 12:08:00 2018 +0100

    gnu: Add python-isoweek.
    
    * gnu/packages/python.scm (python-isoweek, python2-isoweek): New variables.
    
    Signed-off-by: Danny Milosavljevic <address@hidden>
---
 gnu/packages/python.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index a6de455..777590b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -12532,3 +12532,26 @@ Examples are:
 
 (define-public python2-funcy
   (package-with-python2 python-funcy))
+
+(define-public python-isoweek
+  (package
+    (name "python-isoweek")
+    (version "1.3.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "isoweek" version))
+       (sha256
+        (base32
+         "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/gisle/isoweek";)
+    (synopsis "Objects representing a week")
+    (description "The @code{isoweek} module provide the class Week that
+implements the week definition of ISO 8601.  This standard also defines
+a notation for identifying weeks; yyyyWww (where the W is a literal).
+Week instances stringify to this form.")
+    (license license:bsd-3)))
+
+(define-public python2-isoweek
+  (package-with-python2 python-isoweek))



reply via email to

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