[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27961] [PATCH 3/5] gnu: Add python-pendulum.
From: |
Ben Woodcroft |
Subject: |
[bug#27961] [PATCH 3/5] gnu: Add python-pendulum. |
Date: |
Sat, 5 Aug 2017 12:09:58 +1000 |
* 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 e9077cb1d..88617b8d7 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -83,3 +83,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}so you can replace all your @code{datetime} instances
+by Pendulum instances in you code")
+ (license expat)))
+
+(define-public python2-pendulum
+ (package-with-python2 python-pendulum))
--
2.13.4