about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-10-11 21:24:02 +0200
committerGitHub <noreply@github.com>2022-10-11 21:24:02 +0200
commit962b6b0185e5dfa9acaefd0fe9c4cd075169b10f (patch)
treebaea4d647dbea0a63e6ec7131eda9049636425df /pkgs
parentd709a2063d60f19d71b5cde793ebf2076760b695 (diff)
parent7548a378a9717937dc20524513dfb5f0d56652b1 (diff)
Merge pull request #194243 from Luflosi/update/python3Packages.imageio
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/imageio/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/imageio/default.nix b/pkgs/development/python-modules/imageio/default.nix
index 235e93ab8750e..93d7a89d71560 100644
--- a/pkgs/development/python-modules/imageio/default.nix
+++ b/pkgs/development/python-modules/imageio/default.nix
@@ -1,7 +1,7 @@
 { lib
 , stdenv
 , buildPythonPackage
-, isPy27
+, pythonOlder
 , fetchPypi
 , substituteAll
 , imageio-ffmpeg
@@ -16,11 +16,11 @@
 
 buildPythonPackage rec {
   pname = "imageio";
-  version = "2.22.0";
-  disabled = isPy27;
+  version = "2.22.1";
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
-    sha256 = "sha256-ozLRJ+w4ey09ypZ/0GWpDxwaS6I0NXCwP+LOu27QZOo=";
+    sha256 = "sha256-Rl7DX5GdU4kG0wI7Yczsdm2OdXX+Vfy9dmns5Vr7l8o=";
     inherit pname version;
   };