mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
Added: poppler-qt4 to python-packages.nix
This commit is contained in:
parent
c17427597e
commit
5304a065ed
|
@ -2600,6 +2600,29 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
poppler-qt4 = buildPythonPackage rec {
|
||||
name = "poppler-qt4-${version}";
|
||||
version = "0.18.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/python-poppler-qt4/python-poppler-qt4-${version}.tar.gz";
|
||||
md5 = "9c4c5a59b878aed78e96a6ae58c6c185";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyqt4 sip pkgs.pkgconfig pkgs.popplerQt4 ];
|
||||
|
||||
preBuild = "${python}/bin/${python.executable} setup.py build_ext --include-dirs=${pkgs.popplerQt4}/include/poppler/";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Python binding to Poppler-Qt4";
|
||||
longDescription = ''
|
||||
A Python binding to Poppler-Qt4 that aims for completeness
|
||||
and for being actively maintained.
|
||||
'';
|
||||
license = licenses.lgpl;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
|
||||
pudb = buildPythonPackage rec {
|
||||
name = "pudb-2013.3.6";
|
||||
|
|
Loading…
Reference in a new issue