Skip to content

Commit da46eba

Browse files
committed
1 parent a709e7c commit da46eba

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

pkgs/development/python-modules/imageio/default.nix

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
buildPythonPackage rec {
3434
pname = "imageio";
35-
version = "2.34.2";
35+
version = "2.35.0";
3636
pyproject = true;
3737

3838
disabled = pythonOlder "3.8";
@@ -41,7 +41,7 @@ buildPythonPackage rec {
4141
owner = "imageio";
4242
repo = "imageio";
4343
rev = "refs/tags/v${version}";
44-
hash = "sha256-1q/LPEdo9rzcIR1ZD+bIP8MIKe7PmxRd8UX6c5C0V5k=";
44+
hash = "sha256-mmd3O7vvqKiHISASE5xRnBzuYon9HeEYRZGyDKy7n9o=";
4545
};
4646

4747
patches = lib.optionals (!stdenv.isDarwin) [
@@ -58,7 +58,7 @@ buildPythonPackage rec {
5858
pillow
5959
];
6060

61-
passthru.optional-dependencies = {
61+
optional-dependencies = {
6262
bsdf = [ ];
6363
dicom = [ ];
6464
feisem = [ ];
@@ -79,14 +79,11 @@ buildPythonPackage rec {
7979
heif = [ pillow-heif ];
8080
};
8181

82-
nativeCheckInputs =
83-
[
84-
fsspec
85-
psutil
86-
pytestCheckHook
87-
]
88-
++ fsspec.optional-dependencies.github
89-
++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
82+
nativeCheckInputs = [
83+
fsspec
84+
psutil
85+
pytestCheckHook
86+
] ++ fsspec.optional-dependencies.github ++ lib.flatten (builtins.attrValues optional-dependencies);
9087

9188
pytestFlagsArray = [ "-m 'not needs_internet'" ];
9289

0 commit comments

Comments
 (0)