4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
915 B
Nix
41 lines
915 B
Nix
{ lib, 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 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;
|
|
};
|
|
|
|
}
|