[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
61/232: gnu: python-faker: Update to 13.3.4 and honor TESTS?.
From: |
guix-commits |
Subject: |
61/232: gnu: python-faker: Update to 13.3.4 and honor TESTS?. |
Date: |
Sun, 24 Apr 2022 23:58:35 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 807ff4ff646c2a564d0a3fc8ad6fcdac35331d7d
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 31dcf40933..e71c1e4248 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17490,28 +17490,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
- 35/232: gnu: Add python-ufonormalizer., (continued)
- 35/232: gnu: Add python-ufonormalizer., guix-commits, 2022/04/24
- 43/232: gnu: Add python-pytest-freezegun., guix-commits, 2022/04/24
- 48/232: gnu: python-pytest-black: Update to 0.3.12., guix-commits, 2022/04/24
- 51/232: gnu: python-pytest-checkdocs: Update to 2.7.1., guix-commits, 2022/04/24
- 23/232: gnu: Add python-fontmath., guix-commits, 2022/04/24
- 28/232: gnu: Add python-booleanoperations., guix-commits, 2022/04/24
- 33/232: gnu: Add python-cu2qu., guix-commits, 2022/04/24
- 55/232: gnu: Add python-pytest-enabler., guix-commits, 2022/04/24
- 56/232: gnu: Add python-path., guix-commits, 2022/04/24
- 58/232: gnu: Add python-tempora., guix-commits, 2022/04/24
- 61/232: gnu: python-faker: Update to 13.3.4 and honor TESTS?.,
guix-commits <=
- 60/232: gnu: python-factory-boy: Update to 3.2.1., guix-commits, 2022/04/24
- 62/232: gnu: Add python-pytest-randomly., guix-commits, 2022/04/24
- 71/232: gnu: python-pytest-cov: Update to 3.0.0., guix-commits, 2022/04/24
- 64/232: gnu: Add psautohint., guix-commits, 2022/04/24
- 73/232: gnu: python-jupyter-packaging: Update to 0.12.0, run test suite., guix-commits, 2022/04/24
- 81/232: gnu: Add python-skia-pathops., guix-commits, 2022/04/24
- 79/232: gnu: Add python-cffsubr., guix-commits, 2022/04/24
- 83/232: gnu: Add python-compreffor., guix-commits, 2022/04/24
- 82/232: gnu: Add python-ufolib2., guix-commits, 2022/04/24
- 84/232: gnu: Add python-ufo2ft., guix-commits, 2022/04/24