python313Packages.pypdfium2: ignore beta releases

This commit is contained in:
Ihar Hrachyshka 2025-08-22 22:10:27 -04:00
parent 7a7425ea73
commit 71a478fb6e

View file

@ -5,6 +5,7 @@
buildPythonPackage,
fetchFromGitHub,
fetchgit,
gitUpdater,
setuptools-scm,
pdfium-binaries,
numpy,
@ -133,6 +134,12 @@ buildPythonPackage rec {
"pypdfium2"
];
passthru = {
updateScript = gitUpdater {
allowedVersions = "^[.0-9]+$";
};
};
meta = {
changelog = "https://github.com/pypdfium2-team/pypdfium2/releases/tag/${version}";
description = "Python bindings to PDFium";