summaryrefslogtreecommitdiff
path: root/gnu/packages/time.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-28 15:28:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:16 +0100
commita47f40b30ee3bcbcb5e206dd870592e1ccf52509 (patch)
treebd8137ec82adfcaf75f3fa487dbbc6cea94a21b6 /gnu/packages/time.scm
parent34cfee71c5c79676e1fc265ed6db176d6198f581 (diff)
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
Diffstat (limited to 'gnu/packages/time.scm')
-rw-r--r--gnu/packages/time.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 26e398c355b..4aff688b329 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.")