guix-commits
[Top][All Lists]
Advanced

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

03/09: gnu: Add python-pendulum.


From: Ben Woodcroft
Subject: 03/09: gnu: Add python-pendulum.
Date: Sat, 16 Sep 2017 21:13:55 -0400 (EDT)

benwoodcroft pushed a commit to branch master
in repository guix.

commit 89c3eaaa983e741b93544d6e67ae2123cba03616
Author: Ben Woodcroft <address@hidden>
Date:   Sat Aug 5 12:09:58 2017 +1000

    gnu: Add python-pendulum.
    
    * gnu/packages/time.scm (python-pendulum): New variable.
---
 gnu/packages/time.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index e285229..4d3da87 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -82,3 +82,33 @@ to a file.")
 
 (define-public python2-tzdata
   (package-with-python2 python-pytzdata))
+
+(define-public python-pendulum
+  (package
+    (name "python-pendulum")
+    (version "1.2.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pendulum" version))
+       (sha256
+        (base32
+         "1fj36yxi2f4lzchzd8ny1qjl67dbypnk0gn8qwad2w78579m8m8z"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-pytest" ,python-pytest)
+       ("python-nose" ,python-nose)))
+    (propagated-inputs
+     `(("python-dateutil" ,python-dateutil)
+       ("python-pytzdata" ,python-pytzdata)
+       ("python-tzlocal" ,python-tzlocal)))
+    (home-page "https://github.com/sdispater/pendulum";)
+    (synopsis "Alternate API for Python datetimes")
+    (description "Pendulum is a drop-in replacement for the standard
address@hidden class, providing an alternative API.  As it inherits from the
+standard @code{datetime} all @code{datetime} instances can be replaced by
+Pendulum instances.")
+    (license expat)))
+
+(define-public python2-pendulum
+  (package-with-python2 python-pendulum))



reply via email to

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