guix_mirror_bot pushed a commit to branch python-team in repository guix. commit da458714f388e41e25e0d0ae322062bf5796e18d Author: Daniel Ziltener <dzilte...@lyrion.ch> AuthorDate: Thu Apr 24 01:04:03 2025 +0200
gnu: python-iso8601: Update to 2.1.0. * gnu/packages/time.scm (python-iso8601): Update to 2.1.0. [build-system]: Use pyproject. [arguments] <phases>: Use 'default check. Change-Id: Id97a06813c108b7392c1843c5f6d449046a17886 Modified-by: Sharlatan Hellseher <sharlata...@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com> --- gnu/packages/time.scm | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 6ef170bf9c..5453b536ca 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -554,22 +554,17 @@ ISO 8601 dates, time and duration.") (define-public python-iso8601 (package (name "python-iso8601") - (version "1.0.2") + (version "2.1.0") (source (origin (method url-fetch) (uri (pypi-uri "iso8601" version)) (sha256 (base32 - "1ccl6plks706hxm35cn1wsvxhqh3bfwi5cjgjpdxjib81qi07x97")))) - (build-system python-build-system) - (arguments - '(#:phases (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "pytest" "-vv" "iso8601")))))) + "1px83gnklx1dmwb3n3dcplyfvaczhbvhkjcq34qc88c9xqlkh7bb")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest python-pytz)) + (list python-pytest python-poetry-core python-pytz)) (home-page "https://github.com/micktwomey/pyiso8601") (synopsis "Module to parse ISO 8601 dates") (description