Skip to content

Commit

Permalink
Merge pull request #554 from nagy/pikepdf
Browse files Browse the repository at this point in the history
overrides.pikepdf: add qpdf and pybind11 buildInputs
  • Loading branch information
adisbladis authored Feb 15, 2022
2 parents f12bee0 + b92a007 commit 302a559
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1140,6 +1140,13 @@ lib.composeManyExtensions [
}
);

pikepdf = super.pikepdf.overridePythonAttrs (
old: {
buildInputs = old.buildInputs or [ ] ++ [ pkgs.qpdf self.pybind11 ];
pythonImportsCheck = old.pythonImportsCheck or [ ] ++ [ "pikepdf" ];
}
);

pillow = super.pillow.overridePythonAttrs (
old: {
nativeBuildInputs = [ pkg-config self.pytest-runner ] ++ (old.nativeBuildInputs or [ ]);
Expand Down

0 comments on commit 302a559

Please sign in to comment.