[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))
- branch master updated (4db733e -> da1f7a9), Ben Woodcroft, 2017/09/16
- 01/09: gnu: Add python-backpack., Ben Woodcroft, 2017/09/16
- 07/09: gnu: python-pygments: Update to 2.2.0., Ben Woodcroft, 2017/09/16
- 04/09: gnu: python-pyaml: Update to 17.7.2., Ben Woodcroft, 2017/09/16
- 05/09: gnu: Add python-pastel., Ben Woodcroft, 2017/09/16
- 03/09: gnu: Add python-pendulum.,
Ben Woodcroft <=
- 06/09: gnu: python-cleo: Update to 0.6.1., Ben Woodcroft, 2017/09/16
- 08/09: gnu: python-orator: Update to 0.9.7., Ben Woodcroft, 2017/09/16
- 09/09: gnu: python-orator: Move to (gnu packages databases)., Ben Woodcroft, 2017/09/16
- 02/09: gnu: Add python-pytzdata., Ben Woodcroft, 2017/09/16