guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 179511d1e3d72eeacaef5adece9c910cc2f69041 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Mon Jul 28 15:28:24 2025 +0100
gnu: python-aniso8601: Update to 10.0.1. * gnu/packages/time.scm (python-aniso8601): Update to 10.0.1. [build-system]: Use pyproject. [arguments] <test-backend>: Use 'unittest. [home-page]: Fix it as the project migrated from BitBucket to CodeBerg. [native-inputs]: Add python-setuptools. Change-Id: Id87aa1d44c2f74f0f39f897dcffd87f23d05d513 --- gnu/packages/time.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 26e398c355..4aff688b32 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -689,16 +689,19 @@ datetime type.") (define-public python-aniso8601 (package (name "python-aniso8601") - (version "9.0.1") + (version "10.0.1") (source (origin (method url-fetch) (uri (pypi-uri "aniso8601" version)) (sha256 - (base32 - "0wxry6riyqajl02mkad8g2q98sx5jr13zndj3fandpzfcxv13qvj")))) - (build-system python-build-system) - (home-page "https://bitbucket.org/nielsenb/aniso8601") + (base32 "0ib8s62d3zh7qy5rnlrisns2bbjixb0lmyal3yp2h5fxcf38yj15")))) + (build-system pyproject-build-system) + (arguments (list #:test-backend #~'unittest + #:test-flags #~(list "discover" "aniso8601"))) + (native-inputs + (list python-setuptools)) + (home-page "https://codeberg.org/nielsenb-jf/aniso8601") (synopsis "Python library for parsing ISO 8601 strings") (description "This package contains a library for parsing ISO 8601 datetime strings.")