guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

19/29: gnu: python-dateutil: Update to 2.8.0.


From: guix-commits
Subject: 19/29: gnu: python-dateutil: Update to 2.8.0.
Date: Sat, 9 Feb 2019 15:55:25 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit de92ab21c162e69bd15b7215ade61bc47603c8bc
Author: Marius Bakke <address@hidden>
Date:   Sat Feb 9 00:56:37 2019 +0100

    gnu: python-dateutil: Update to 2.8.0.
    
    * gnu/packages/time.scm (python-dateutil): Update to 2.8.0.
    [arguments]: New field.
    [native-inputs]: Add PYTHON-PYTEST.
---
 gnu/packages/time.scm | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 948d2b9..e67960d 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -145,17 +145,31 @@ Pendulum instances.")
 (define-public python-dateutil
   (package
     (name "python-dateutil")
-    (version "2.7.3")
+    (version "2.8.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "python-dateutil" version))
        (sha256
         (base32
-         "1f7h54lg0w2ckch7592xpjkh8dg87k2br256h0iw49zn6bg02w72"))))
+         "17nsfhy4xdz1khrfxa61vd7pmvd5z0wa3zb6v4gb4kfnykv0b668"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (replace 'check
+                    (lambda _
+                      ;; Delete tests that depend on "freezegun" to avoid a
+                      ;; circular dependency.
+                      (delete-file "dateutil/test/test_utils.py")
+                      (delete-file "dateutil/test/test_rrule.py")
+
+                      ;; XXX: Fails to get timezone from /etc/localtime.
+                      (delete-file "dateutil/test/test_tz.py")
+
+                      (invoke "pytest" "-vv"))))))
     (native-inputs
-     `(("python-setuptools-scm" ,python-setuptools-scm)))
+     `(("python-pytest" ,python-pytest)
+       ("python-setuptools-scm" ,python-setuptools-scm)))
     (propagated-inputs
      `(("python-six" ,python-six)))
     (home-page "https://dateutil.readthedocs.io/en/stable/";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]