diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-12 22:39:33 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-13 19:09:13 +0200 |
commit | a20a93408153254898638a968e1894efb0945a04 (patch) | |
tree | 164743e5a77ecd04bc043103bcbe2bd70d418786 /gnu/packages/check.scm | |
parent | 30ac875bd85e3da141961ed2225092fdc37729e4 (diff) |
gnu: python-freezegun: Update to 1.2.2.
* gnu/packages/check.scm (python-freezegun): Update to 1.2.2.
[native-inputs]: Remove PYTHON-MOCK.
[propagated-inputs]: Remove PYTHON-SIX.
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 75bd20cff9..e521c92b2b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2711,18 +2711,18 @@ create data based on random numbers and yet remain repeatable.") (define-public python-freezegun (package (name "python-freezegun") - (version "0.3.14") + (version "1.2.2") (source (origin (method url-fetch) (uri (pypi-uri "freezegun" version)) (sha256 - (base32 "0al75mk829j1izxi760b7yjnknjihyfhp2mvi5qiyrxb9cpxwqk2")))) + (base32 "0ijlq32qvpm5zprfzbyzawpl9qjsknlxhryr1i0q84wl0sxd28nd")))) (build-system python-build-system) (native-inputs - (list python-mock python-pytest)) + (list python-pytest)) (propagated-inputs - (list python-six python-dateutil)) + (list python-dateutil)) (arguments `(#:phases (modify-phases %standard-phases |