1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-18 15:15:54 +02:00

gnu: python-isodate: Update to 0.7.2.

* gnu/packages/time.scm (python-isodate): Update to 0.7.2.
[build-system]: Use pyproject-build-system.
[native-inputs]: Remove python-six; add python-pytest, python-setuptools,
python-setuptools-scm, and python-wheel.

Change-Id: I5ba64eb433e39c0bbb0360273f822d95ea7c63d3
This commit is contained in:
Ricardo Wurmus
2024-12-27 21:30:38 +01:00
parent 7c942c1a63
commit ff4a9b282d
+8 -4
View File
@@ -26,6 +26,7 @@
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2024 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -439,17 +440,20 @@ under several distributions that's hard or impossible to figure out.")
(define-public python-isodate
(package
(name "python-isodate")
(version "0.6.1")
(version "0.7.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "isodate" version))
(sha256
(base32
"1sdx4z0x6kv1qxjfi0gd82wfg16wca04q0nb93ba1c78wwfqiia8"))))
(build-system python-build-system)
"1rjkm5qj3lz60sgva5g38cpfqd8byj2jlaf0qskg8xna8c7smlac"))))
(build-system pyproject-build-system)
(native-inputs
(list python-six))
(list python-pytest
python-setuptools
python-setuptools-scm
python-wheel))
(home-page "https://github.com/gweis/isodate/")
(synopsis "Python date parser and formatter")
(description