guix-commits
[Top][All Lists]
Advanced

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

61/242: gnu: python-faker: Update to 13.3.4 and honor TESTS?.


From: guix-commits
Subject: 61/242: gnu: python-faker: Update to 13.3.4 and honor TESTS?.
Date: Thu, 12 May 2022 14:14:08 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit a749fbea4e5f0f3faaff60b64625921225df2dbb
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Apr 6 08:52:08 2022 -0400

    gnu: python-faker: Update to 13.3.4 and honor TESTS?.
    
    * gnu/packages/python-xyz.scm (python-faker): Update to 13.3.4.
    [phases]{check}: Honor TESTS?.
    [native-inputs]: Replace python-pytest-6 by python-pytest.  Remove comment.
    [propagated-inputs]: Remove python-text-unidecode.
---
 gnu/packages/python-xyz.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 176fa7ec28..43009da908 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17506,28 +17506,28 @@ parsing UK postcodes.")
 (define-public python-faker
   (package
     (name "python-faker")
-    (version "9.3.1")
+    (version "13.3.4")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "Faker" version))
               (sha256
                (base32
-                "0lpfdc4ndvk7chgqrfd2b1my4n54pccq9b645vp9cp5s5ypyknfd"))))
+                "04855dqvvi2mr739l5x3qf82rxq0a7spc8gl76k8xixmbw36328q"))))
     (build-system python-build-system)
     (arguments
      '(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda _ (invoke "python" "-m" "pytest" "-v"))))))
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (invoke "python" "-m" "pytest" "-v")))))))
     (native-inputs
-     (list ;; For testing
-           python-freezegun
-           python-pytest-6
+     (list python-freezegun
+           python-pytest
            python-random2
            python-ukpostcodeparser
            python-validators))
-    (propagated-inputs
-     (list python-dateutil python-text-unidecode))
+    (propagated-inputs (list python-dateutil))
     (home-page "https://github.com/joke2k/faker";)
     (synopsis "Python package that generates fake data")
     (description



reply via email to

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