Skip to content

Commit

Permalink
pythonPackages.poppler-qt5: init at 0.24.2
Browse files Browse the repository at this point in the history
related to #32883
  • Loading branch information
Ma27 committed Mar 31, 2018
1 parent d50943a commit 8446cd9
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pkgs/development/python-modules/poppler-qt5/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{ buildPythonPackage, fetchPypi, stdenv, sip, qtbase, pyqt5, poppler, pkgconfig, fetchpatch
, python, substituteAll
}:

buildPythonPackage rec {
pname = "python-poppler-qt5";
version = "0.24.2";

src = fetchPypi {
inherit pname version;
sha256 = "0l69llw1fzwz8y90q0qp9q5pifbrqjjbwii7di54dwghw5fc6w1r";
};

patches = [
(substituteAll {
src = ./poppler-include-dir.patch;
poppler_include_dir = "${poppler.dev}/include/poppler";
})
(fetchpatch {
url = "https://github.com/wbsoft/python-poppler-qt5/commit/faf4d1308f89560b0d849671226e3080dfc72e79.patch";
sha256 = "18krhh6wzsnpxzlzv02nginb1vralla8ai24zqk10nc4mj6fkj86";
})
];

setupPyBuildFlags = [
"--pyqt-sip-dir ${pyqt5}/share/sip/PyQt5"
"--qt-include-dir ${qtbase.dev}/include"
];

buildInputs = [ qtbase.dev poppler ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ sip pyqt5.dev ];

# no tests, just bindings for `poppler_qt5`
doCheck = false;

meta = with stdenv.lib; {
homepage = https://github.com/wbsoft/python-poppler-qt5;
license = licenses.gpl2;
maintainers = with maintainers; [ ma27 ];
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/setup.py b/setup.py
index 59a75b0..0a73268 100644
--- a/setup.py
+++ b/setup.py
@@ -169,6 +169,7 @@ class build_ext(build_ext_base):
'Please specify via --pyqt-sip-flags=')

self.include_dirs += (self.qt_include_dir,
+ '@poppler_include_dir@',
os.path.join(self.qt_include_dir, 'QtCore'),
os.path.join(self.qt_include_dir, 'QtGui'),
os.path.join(self.qt_include_dir, 'QtXml'))
5 changes: 5 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5700,6 +5700,11 @@ in {
};
};

poppler-qt5 = callPackage ../development/python-modules/poppler-qt5 {
inherit (pkgs.qt5) qtbase;
inherit (pkgs.libsForQt5) poppler;
};

poyo = buildPythonPackage rec {
version = "0.4.0";
name = "poyo-${version}";
Expand Down

0 comments on commit 8446cd9

Please sign in to comment.