python3Packages.pikepdf: 9.7.1 -> 9.8.1

Diff: https://github.com/pikepdf/pikepdf/compare/refs/tags/v9.7.1...refs/tags/v9.8.1

Changelog: https://github.com/pikepdf/pikepdf/blob/v9.8.1/docs/releasenotes/version9.md

Changed files
+3 -3
pkgs
development
python-modules
pikepdf
+3 -3
pkgs/development/python-modules/pikepdf/default.nix
···
buildPythonPackage rec {
pname = "pikepdf";
-
version = "9.7.1";
+
version = "9.8.1";
pyproject = true;
src = fetchFromGitHub {
···
postFetch = ''
rm "$out/.git_archival.txt"
'';
-
hash = "sha256-QXuXHFc48KTlIwO0aJsQRmrupZIJYElfbwM9itzTYhc=";
+
hash = "sha256-gFaGHml1F5i+w68xapmPHYUK760rT4GJzTWTkDsIwC8=";
};
patches = [
···
description = "Read and write PDFs with Python, powered by qpdf";
license = licenses.mpl20;
maintainers = with maintainers; [ dotlambda ];
-
changelog = "https://github.com/pikepdf/pikepdf/blob/${src.tag}/docs/releasenotes/version${lib.versions.major version}.rst";
+
changelog = "https://github.com/pikepdf/pikepdf/blob/${src.tag}/docs/releasenotes/version${lib.versions.major version}.md";
};
}