summaryrefslogtreecommitdiff
path: root/gnu/packages/check.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r--gnu/packages/check.scm13
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index e521c92b2b..b57bfa30d8 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2717,7 +2717,18 @@ create data based on random numbers and yet remain repeatable.")
(method url-fetch)
(uri (pypi-uri "freezegun" version))
(sha256
- (base32 "0ijlq32qvpm5zprfzbyzawpl9qjsknlxhryr1i0q84wl0sxd28nd"))))
+ (base32 "0ijlq32qvpm5zprfzbyzawpl9qjsknlxhryr1i0q84wl0sxd28nd"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; Add an explicit case for static methods as they are callable
+ ;; in Python 3.10, breaking this conditional.
+ ;; XXX Taken from upstream pull request:
+ ;; https://github.com/spulec/freezegun/pull/397
+ '(substitute* "freezegun/api.py"
+ (("if not callable\\(attr_value\\) or \
+inspect\\.isclass\\(attr_value\\):")
+ "if (not callable(attr_value) or inspect.isclass(attr_value)\
+or isinstance(attr_value, staticmethod)):")))))
(build-system python-build-system)
(native-inputs
(list python-pytest))