Skip to content

Commit

Permalink
python3Packages.python-poppler: init at 0.4.1 (#351620)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Oct 31, 2024
2 parents 5463f5a + aa8854e commit 0c7e443
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
58 changes: 58 additions & 0 deletions pkgs/development/python-modules/python-poppler/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
Original file line number Diff line number Diff line change
@@ -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')
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 0c7e443

Please sign in to comment.