Merge pull request #305915 from GaetanLepage/imageio

python311Packages.imageio: 2.34.0 -> 2.34.1
This commit is contained in:
Nick Cao 2024-04-23 10:28:07 -04:00 committed by GitHub
commit ef03b5f63c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -31,7 +31,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "imageio"; pname = "imageio";
version = "2.34.0"; version = "2.34.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -40,7 +40,7 @@ buildPythonPackage rec {
owner = "imageio"; owner = "imageio";
repo = "imageio"; repo = "imageio";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-+I5KmKSLi8ARbDH06em71LWhmqziAaDfaBp4hU67/jg="; hash = "sha256-/VZUifiz8iImq+JLvckFDr7YMIqu0Xro2t3GFj0obg0=";
}; };
patches = lib.optionals (!stdenv.isDarwin) [ patches = lib.optionals (!stdenv.isDarwin) [
@ -50,11 +50,11 @@ buildPythonPackage rec {
}) })
]; ];
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
numpy numpy
pillow pillow
]; ];

View File

@ -135,5 +135,7 @@ buildPythonPackage rec {
changelog = "https://github.com/explosion/spaCy/releases/tag/v${version}"; changelog = "https://github.com/explosion/spaCy/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
# Cython.Compiler.Errors.CompileError: spacy/ml/parser_model.pyx
broken = true;
}; };
} }