mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
python313Packages.pypdfium2: ignore beta releases
This commit is contained in:
parent
7a7425ea73
commit
71a478fb6e
|
|
@ -5,6 +5,7 @@
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
fetchgit,
|
fetchgit,
|
||||||
|
gitUpdater,
|
||||||
setuptools-scm,
|
setuptools-scm,
|
||||||
pdfium-binaries,
|
pdfium-binaries,
|
||||||
numpy,
|
numpy,
|
||||||
|
|
@ -133,6 +134,12 @@ buildPythonPackage rec {
|
||||||
"pypdfium2"
|
"pypdfium2"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = gitUpdater {
|
||||||
|
allowedVersions = "^[.0-9]+$";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
changelog = "https://github.com/pypdfium2-team/pypdfium2/releases/tag/${version}";
|
changelog = "https://github.com/pypdfium2-team/pypdfium2/releases/tag/${version}";
|
||||||
description = "Python bindings to PDFium";
|
description = "Python bindings to PDFium";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue