-
-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3Packages.python-poppler: init at 0.4.1
- Loading branch information
Showing
3 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
pkgs/development/python-modules/python-poppler/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
13 changes: 13 additions & 0 deletions
13
pkgs/development/python-modules/python-poppler/use_system_pybind11.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters