guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: python-freezegun: Update to 0.3.12.


From: guix-commits
Subject: 02/04: gnu: python-freezegun: Update to 0.3.12.
Date: Thu, 20 Jun 2019 17:07:57 -0400 (EDT)

mbakke pushed a commit to branch staging
in repository guix.

commit 4e24e442f2c9629edf08bef30ec98959da950189
Author: Marius Bakke <address@hidden>
Date:   Tue Jun 18 15:21:14 2019 +0200

    gnu: python-freezegun: Update to 0.3.12.
    
    * gnu/packages/check.scm (python-freezegun): Update to 0.3.12.
    [native-inputs]: Remove PYTHON-NOSE and PYTHON-COVERAGE.  Add PYTHON-PYTEST.
    [arguments]: Use "pytest" instead of "nosetests" for running tests.
---
 gnu/packages/check.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 82391ac..e24f271 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2043,18 +2043,17 @@ create data based on random numbers and yet remain 
repeatable.")
 (define-public python-freezegun
   (package
     (name "python-freezegun")
-    (version "0.3.11")
+    (version "0.3.12")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "freezegun" version))
        (sha256
-        (base32 "1nh0fzqjwg88n57k3qa8mxnmiwrr7lqyd5xvc96qn5g8zcxv8fg8"))))
+        (base32 "1rx57v8ryjncjimg8hys9kx1r3rknvwcl4y340g20jn0sf69qk9a"))))
     (build-system python-build-system)
     (native-inputs
      `(("python-mock" ,python-mock)
-       ("python-nose" ,python-nose)
-       ("python-coverage" ,python-coverage)))
+       ("python-pytest" ,python-pytest)))
     (propagated-inputs
      `(("python-six" ,python-six)
        ("python-dateutil" ,python-dateutil)))
@@ -2065,7 +2064,7 @@ create data based on random numbers and yet remain 
repeatable.")
          ;; package does not include the Makefile.
          (replace 'check
            (lambda _
-             (invoke "nosetests" "./tests/"))))))
+             (invoke "pytest" "-vv"))))))
     (home-page "https://github.com/spulec/freezegun";)
     (synopsis "Test utility for mocking the datetime module")
     (description



reply via email to

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