rekado pushed a commit to branch master
in repository guix.

commit ff4a9b282d4d0a95925613815c2bfe401bba51c2
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Fri Dec 27 21:30:38 2024 +0100

    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
---
 gnu/packages/time.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 0d84dee178..2a94f53474 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -26,6 +26,7 @@
 ;;; Copyright © 2024 Sharlatan Hellseher <[email protected]>
 ;;; Copyright © 2024 Zheng Junjie <[email protected]>
 ;;; Copyright © 2024 Vinicius Monego <[email protected]>
+;;; Copyright © 2024 Ricardo Wurmus <[email protected]>
 ;;;
 ;;; 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

Reply via email to