python310Packages.imageio-ffmpeg 0 -> 1 attrpath: python310Packages.imageio-ffmpeg Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-imageio-ffmpeg-0.4.8 Press Enter key to continue... Running update for: - python3.10-imageio-ffmpeg-0.4.8: UPDATING ... - python3.10-imageio-ffmpeg-0.4.8: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/imageio-ffmpeg/default.nix b/pkgs/development/python-modules/imageio-ffmpeg/default.nix index cdffa669edcf..3f2b7de89dde 100644 --- a/pkgs/development/python-modules/imageio-ffmpeg/default.nix +++ b/pkgs/development/python-modules/imageio-ffmpeg/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "imageio-ffmpeg"; - version = "0.4.8"; + version = "0.4.9"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-/aoFrRD+Bwt/qOX2FcsNKPO5t5HQCvbSoR5pQVjRCqk="; + hash = "sha256-ObzRZgEY7zYPpAR0VlAQcTZGYaqdkCHT0mxY8e4ggfU="; }; patches = [ No auto update branch exists Old version 0.4.8" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , substituteAll , ffmpeg_4 , python }: buildPythonPackage rec { pname = "imageio-ffmpeg"; version = "0.4.9"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-ObzRZgEY7zYPpAR0VlAQcTZGYaqdkCHT0mxY8e4ggfU="; }; patches = [ (substituteAll { src = ./ffmpeg-path.patch; ffmpeg = "${ffmpeg_4}/bin/ffmpeg"; }) ]; # https://github.com/imageio/imageio-ffmpeg/issues/59 postPatch = '' sed -i '/setup_requires=\["pip>19"\]/d' setup.py ''; checkPhase = '' runHook preCheck ${python.interpreter} << EOF from imageio_ffmpeg import get_ffmpeg_version assert get_ffmpeg_version() == '${ffmpeg_4.version}' EOF runHook postCheck ''; pythonImportsCheck = [ "imageio_ffmpeg" ]; meta = with lib; { description = "FFMPEG wrapper for Python"; homepage = "https://github.com/imageio/imageio-ffmpeg"; license = licenses.bsd2; maintainers = [ maintainers.pmiddend ]; }; }