~ruther/guix-local

5a897c5c95a81278b044c18d962d3bd83131ba06 — Sharlatan Hellseher 1 year, 1 month ago 60c1d26
gnu: python-ciso8601: Update to 2.3.2.

* gnu/packages/time.scm (python-ciso8601): Update to 2.3.2.
[build-system]: Swap to pyrpoject-buid-system.
[native-inputs]: Remove python-pytz; add python-pytest,
python-setuptools, and python-wheel.

Change-Id: Ic1a4a329ca8e365976b490de7d7025299782ee41
1 files changed, 9 insertions(+), 11 deletions(-)

M gnu/packages/time.scm
M gnu/packages/time.scm => gnu/packages/time.scm +9 -11
@@ 348,7 348,7 @@ business day calculation.")
(define-public python-ciso8601
  (package
    (name "python-ciso8601")
    (version "2.1.3")
    (version "2.3.2")
    (source
     (origin
       (method git-fetch)


@@ 358,19 358,17 @@ business day calculation.")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "0g1aiyc1ayh0rnibyy416m5mmck38ksgdm3jsy0z3rxgmgb24951"))))
    (build-system python-build-system)
    ;; Pytz should only be required for Python 2, but the test suite fails
    ;; without it.
        (base32 "189adk14ygs1cx3ncm1wqqfh18r72gl299zkllncynp1y79d0nd1"))))
    (build-system pyproject-build-system)
    (native-inputs
     (list python-pytz))
     (list python-pytest
           python-setuptools
           python-wheel))
    (home-page "https://github.com/closeio/ciso8601")
    (synopsis
     "Fast ISO8601 date time parser")
    (synopsis "Fast ISO8601 date time parser")
    (description
     "The package ciso8601 converts ISO 8601 or RFC 3339 date time strings into
Python datetime objects.")
     "The package ciso8601 converts ISO 8601 or RFC 3339 date time strings
into Python datetime objects.")
    (license expat)))

(define-public python-relativetimebuilder