about summary refs log tree commit diff
path: root/pkgs/development/python-modules/freezegun/default.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-14 23:36:08 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-18 23:57:41 +0200
commitf75b8276afdda77d36663dba96911dc2fba4e384 (patch)
tree5847e8001551aab5a02c1e30a49bb09c658afd03 /pkgs/development/python-modules/freezegun/default.nix
parentcf9ae52369a813401d39e8f916da191aa46c0f85 (diff)
python3Packages.freezegun: 1.2.1 -> 1.2.2
Diffstat (limited to 'pkgs/development/python-modules/freezegun/default.nix')
-rw-r--r--pkgs/development/python-modules/freezegun/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/freezegun/default.nix b/pkgs/development/python-modules/freezegun/default.nix
index 171d2b0556aba..b1300b4e1146d 100644
--- a/pkgs/development/python-modules/freezegun/default.nix
+++ b/pkgs/development/python-modules/freezegun/default.nix
@@ -10,21 +10,21 @@
 
 buildPythonPackage rec {
   pname = "freezegun";
-  version = "1.2.1";
+  version = "1.2.2";
   format = "setuptools";
 
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-tMZO+ydea8aNxudxsX/+D/D5C4GipRiQQ1ULZRmSa6Q=";
+    hash = "sha256-zSLRugaUE4RBDNln2KmdWuJEL1ffr+/y/aXejcXAVEY=";
   };
 
   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=";
+      hash = "sha256-FNABqVN5DFqVUR88lYzwbfsZj3xcB9/MvQtm+I2VjnI=";
     })
   ];