Merge pull request #322131 from GaetanLepage/imageio

This commit is contained in:
Sandro 2024-06-25 11:02:20 +02:00 committed by GitHub
commit 788d880c3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,7 @@
buildPythonPackage rec {
pname = "imageio";
version = "2.34.1";
version = "2.34.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -41,7 +41,7 @@ buildPythonPackage rec {
owner = "imageio";
repo = "imageio";
rev = "refs/tags/v${version}";
hash = "sha256-/VZUifiz8iImq+JLvckFDr7YMIqu0Xro2t3GFj0obg0=";
hash = "sha256-1q/LPEdo9rzcIR1ZD+bIP8MIKe7PmxRd8UX6c5C0V5k=";
};
patches = lib.optionals (!stdenv.isDarwin) [
@ -113,11 +113,11 @@ buildPythonPackage rec {
"test_reverse_read"
];
meta = with lib; {
meta = {
description = "Library for reading and writing a wide range of image, video, scientific, and volumetric data formats";
homepage = "https://imageio.readthedocs.io";
changelog = "https://github.com/imageio/imageio/blob/v${version}/CHANGELOG.md";
license = licenses.bsd2;
maintainers = with maintainers; [ Luflosi ];
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ Luflosi ];
};
}