Merge pull request #149920 from jonringer/fix-freegun-py310

This commit is contained in:
Martin Weinelt 2021-12-10 00:07:55 +01:00 committed by GitHub
commit 296081d9fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, pythonOlder
, pythonAtLeast
, fetchpatch
, fetchPypi
, python-dateutil
, pytestCheckHook
@ -16,6 +18,14 @@ buildPythonPackage rec {
sha256 = "177f9dd59861d871e27a484c3332f35a6e3f5d14626f2bf91be37891f18927f3";
};
patches = lib.optionals (pythonAtLeast "3.10") [
# Staticmethods in 3.10+ are now callable, prevent freezegun to attempt to decorate them
(fetchpatch {
url = "https://github.com/spulec/freezegun/pull/397/commits/e63874ce75a74a1159390914045fe8e7955b24c4.patch";
sha256 = "sha256-FNABqVN5DFqVUR88lYzwbfsZj3xcB9/MvQtm+I2VjnI=";
})
];
propagatedBuildInputs = [ python-dateutil ];
checkInputs = [ pytestCheckHook ];