python3Packages.python-poppler: init at 0.4.1 (#351620)

This commit is contained in:
OTABI Tomoya 2024-10-31 22:53:04 +09:00 committed by GitHub
commit 0c7e443a37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,58 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
pytestCheckHook,
setuptools,
meson-python,
ninja,
meson,
poppler,
pkg-config,
pybind11,
}:
buildPythonPackage rec {
pname = "python-poppler";
version = "0.4.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit version;
pname = "python_poppler";
hash = "sha256-5spcI+wCNQvyzvhaa/nxsmF5ZDbbR4F2+dJPsU7uzGo=";
};
patches = [
# Prevent Meson from downloading pybind11, use system version instead
./use_system_pybind11.patch
];
build-system = [ meson-python ];
buildInputs = [ pybind11 ];
nativeBuildInputs = [
ninja
pkg-config
];
propagatedBuildInputs = [ poppler ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportCheck = [ "poppler" ];
meta = {
description = "Python binding to poppler-cpp";
homepage = "https://github.com/cbrunet/python-poppler";
changelog = "https://cbrunet.net/python-poppler/changelog.html";
# Contradictory license definition
# https://github.com/cbrunet/python-poppler/issues/90
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.onny ];
};
}

View File

@ -0,0 +1,13 @@
diff --git a/meson.build b/meson.build
index c1ac57a..1d1ad1f 100644
--- a/meson.build
+++ b/meson.build
@@ -13,7 +13,6 @@ poppler_dep = dependency('poppler-cpp', version: '>=0.26.0')
python_mod = import('python')
python3 = python_mod.find_installation('python3', pure: false)
-pybind11_proj = subproject('pybind11')
-pybind11_dep = pybind11_proj.get_variable('pybind11_dep')
+pybind11_dep = dependency('pybind11')
subdir('src')

View File

@ -10496,6 +10496,8 @@ self: super: with self; {
python-owasp-zap-v2-4 = callPackage ../development/python-modules/python-owasp-zap-v2-4 { };
python-poppler = callPackage ../development/python-modules/python-poppler { };
python-pptx = callPackage ../development/python-modules/python-pptx { };
python-songpal = callPackage ../development/python-modules/python-songpal { };