Merge pull request #332238 from r-ryantm/auto-update/python312Packages.imread

python312Packages.imread: 0.7.5 -> 0.7.6
This commit is contained in:
Pol Dellaiera
2024-08-04 22:46:08 +02:00
committed by GitHub
@@ -14,19 +14,17 @@
buildPythonPackage rec {
pname = "imread";
version = "0.7.5";
version = "0.7.6";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "imread";
hash = "sha256-GiWpA128GuLlbBW1CQQHHVVeoZfu9Yyh2RFzSdtHDbc=";
inherit pname version;
hash = "sha256-ULPXCJyGJQTCKyVu9R/kWFGzRhbbFMDr/FU2AByZYBU=";
};
nativeBuildInputs = [
pkg-config
setuptools
];
build-system = [ setuptools ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libjpeg
@@ -35,7 +33,7 @@ buildPythonPackage rec {
libwebp
];
propagatedBuildInputs = [ numpy ];
dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -56,7 +54,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python package to load images as numpy arrays";
homepage = "https://imread.readthedocs.io/en/latest/";
homepage = "https://imread.readthedocs.io/";
changelog = "https://github.com/luispedro/imread/blob/v${version}/ChangeLog";
maintainers = with maintainers; [ luispedro ];
license = licenses.mit;
platforms = platforms.unix;