summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-11-10 07:27:08 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-11-19 09:42:13 +0900
commitb92b51c65a4456db668f1e896626c049c9e480e3 (patch)
tree62a39b7f93e0ea69aeda380c3df567f0f65b1abe
parentc0b3d143d965d6a0808311381172270690d57795 (diff)
gnu: python-arrow: Update to 1.4.0.
* gnu/packages/time.scm (python-arrow): Update to 1.4.0. [propagated-inputs]: Add python-tzdata. Change-Id: I9e6449b99242d09019d8d0715ad405d2b514c11d
-rw-r--r--gnu/packages/time.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 3fd90ddb27d..8a56e6fdc9a 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -723,13 +723,13 @@ timestamps.")
723(define-public python-arrow 723(define-public python-arrow
724 (package 724 (package
725 (name "python-arrow") 725 (name "python-arrow")
726 (version "1.3.0") 726 (version "1.4.0")
727 (source (origin 727 (source (origin
728 (method url-fetch) 728 (method url-fetch)
729 (uri (pypi-uri "arrow" version)) 729 (uri (pypi-uri "arrow" version))
730 (sha256 730 (sha256
731 (base32 731 (base32
732 "11bssv25jix57igvfmvg2v8dmwk55b4dh6hgffazidccchbhcm6l")))) 732 "1mr6wlbd289bb1asc147x2bwajlc16q63m44krvvh0c0x58c037d"))))
733 (build-system pyproject-build-system) 733 (build-system pyproject-build-system)
734 ;; Tests: 1837 passed, 2 xpassed. 734 ;; Tests: 1837 passed, 2 xpassed.
735 (native-inputs 735 (native-inputs
@@ -742,7 +742,8 @@ timestamps.")
742 python-simplejson)) 742 python-simplejson))
743 (propagated-inputs 743 (propagated-inputs
744 (list python-dateutil 744 (list python-dateutil
745 python-types-python-dateutil)) 745 python-types-python-dateutil
746 python-tzdata))
746 (home-page "https://github.com/arrow-py/arrow") 747 (home-page "https://github.com/arrow-py/arrow")
747 (synopsis "Dates and times for Python") 748 (synopsis "Dates and times for Python")
748 (description 749 (description