mupdf: 1.24.11 -> 1.25.2 (#369410)

This commit is contained in:
Emily
2025-01-05 20:24:16 +00:00
committed by GitHub
2 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -62,12 +62,12 @@ let
in
stdenv.mkDerivation rec {
version = "1.24.11";
version = "1.25.2";
pname = "mupdf";
src = fetchurl {
url = "https://mupdf.com/downloads/archive/${pname}-${version}-source.tar.gz";
hash = "sha256-GRInuWd19nBe99lVEYdRGTK1GSc7NFNaMxSRz32YFj8=";
hash = "sha256-Nsz2peaR4Yis+NtumNCL8F8nu0zjBDLcFfx20ympLU0=";
};
patches = [
@@ -41,7 +41,7 @@ let
in
buildPythonPackage rec {
pname = "pymupdf";
version = "1.24.14";
version = "1.25.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -50,7 +50,7 @@ buildPythonPackage rec {
owner = "pymupdf";
repo = "PyMuPDF";
tag = version;
hash = "sha256-M7Ca3nqnqeClp4MGJqTAVGZhAGRniregjRrjtAhRkBc=";
hash = "sha256-kdu8CuQJ5+h8+PS66acWEfcttgALiD+JBoWWyGtjBzs=";
};
# swig is not wrapped as Python package
@@ -123,6 +123,11 @@ buildPythonPackage rec {
preCheck = ''
export PATH="$out/bin:$PATH";
# Fixes at least one test; see:
# * <https://github.com/pymupdf/PyMuPDF/blob/refs/tags/1.25.1/scripts/sysinstall.py#L390>
# * <https://github.com/pymupdf/PyMuPDF/blob/refs/tags/1.25.1/tests/test_pixmap.py#L425-L428>
export PYMUPDF_SYSINSTALL_TEST=1
'';
meta = {