From 5a897c5c95a81278b044c18d962d3bd83131ba06 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 4 Feb 2025 18:36:13 +0000 Subject: [PATCH] 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 --- gnu/packages/time.scm | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index bd211edf575bef0e1fc7d2ace7604fd384157a02..46e78c7ab745e4de51684dff64bfc5285f4e3de8 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -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