3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.pypopplar: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-16 10:55:33 -04:00 committed by Frederik Rietdijk
parent 2dbdea23b6
commit e6d98dc92a
4 changed files with 42 additions and 31 deletions

View file

@ -0,0 +1,41 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, pycairo
, pygobject2
, pkgs
}:
buildPythonPackage rec {
pname = "pypoppler";
version = "0.12.2";
src = fetchPypi {
inherit pname version;
sha256 = "47e6ac99e5b114b9abf2d1dd1bca06f22c028d025432512989f659142470810f";
};
NIX_CFLAGS_COMPILE="-I${pkgs.poppler.dev}/include/poppler/";
nativeBuildInputs = [ pkgs.pkgconfig ];
buildInputs = [ pkgs.poppler.dev ];
propagatedBuildInputs = [ pycairo pygobject2 ];
patches = [
./pypoppler-0.39.0.patch
./pypoppler-poppler.c.patch
];
# Not supported.
disabled = isPy3k;
# No tests in archive
doCheck = false;
meta = with stdenv.lib; {
homepage = https://code.launchpad.net/~mriedesel/poppler-python/main;
description = "Python bindings for poppler-glib, unofficial branch including bug fixes, and removal of gtk dependencies";
license = licenses.gpl2;
};
}

View file

@ -2089,37 +2089,7 @@ in {
pyphen = callPackage ../development/python-modules/pyphen {};
pypoppler = buildPythonPackage rec {
name = "pypoppler-${version}";
version = "0.12.2";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pypoppler/${name}.tar.gz";
sha256 = "47e6ac99e5b114b9abf2d1dd1bca06f22c028d025432512989f659142470810f";
};
NIX_CFLAGS_COMPILE="-I${pkgs.poppler.dev}/include/poppler/";
nativeBuildInputs = [ pkgs.pkgconfig ];
buildInputs = [ pkgs.poppler.dev ];
propagatedBuildInputs = with self; [ pycairo pygobject2 ];
patches = [
../development/python-modules/pypoppler-0.39.0.patch
../development/python-modules/pypoppler-poppler.c.patch
];
# Not supported.
disabled = isPy3k;
# No tests in archive
doCheck = false;
meta = {
homepage = https://code.launchpad.net/~mriedesel/poppler-python/main;
description = "Python bindings for poppler-glib, unofficial branch including bug fixes, and removal of gtk dependencies";
license = licenses.gpl2;
};
};
pypoppler = callPackage ../development/python-modules/pypoppler { };
pypillowfight = callPackage ../development/python-modules/pypillowfight { };