mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: Add python-dateutils.
* gnu/packages/time.scm (python-dateutils): New variable.
This commit is contained in:
parent
d071bc5a82
commit
ff3c55bb98
1 changed files with 22 additions and 0 deletions
|
@ -233,6 +233,28 @@ (define-public python-dateutil
|
|||
;; BSD-3 still; but all new code is dual licensed (the user can choose).
|
||||
(license (list bsd-3 asl2.0))))
|
||||
|
||||
(define-public python-dateutils
|
||||
(package
|
||||
(name "python-dateutils")
|
||||
(version "0.6.12")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "dateutils" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1wg3f3imjq3snvjccv64h5498pqv9xz664xhni7bsh8mnay91p83"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-dateutil python-pytz))
|
||||
(home-page "https://github.com/jmcantrell/python-dateutils")
|
||||
(synopsis "Various utilities for working with date and datetime objects")
|
||||
(description
|
||||
"The main purpose of this package is to provide more complex arithmetic
|
||||
operations on dates/times. Heavy use is made of the @code{relativedelta} type
|
||||
from the @code{dateutil} library. Much of this package is just a light
|
||||
wrapper on top of this with some added features such as range generation and
|
||||
business day calculation.")
|
||||
(license bsd-0)))
|
||||
|
||||
(define-public python-parsedatetime
|
||||
(package
|
||||
(name "python-parsedatetime")
|
||||
|
|
Loading…
Reference in a new issue