3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/pdfarranger/default.nix

47 lines
1 KiB
Nix
Raw Normal View History

2019-10-08 13:00:00 +01:00
{ stdenv, fetchFromGitHub, lib
, wrapGAppsHook, intltool
, python3Packages, gtk3, poppler_gi
}:
python3Packages.buildPythonApplication rec {
pname = "pdfarranger";
2020-07-16 13:00:00 +01:00
version = "1.6.0";
2019-10-08 13:00:00 +01:00
src = fetchFromGitHub {
owner = "jeromerobert";
repo = pname;
rev = version;
2020-07-16 13:00:00 +01:00
sha256 = "03siz4ar6flyvrrgh7hr7sslc6n9x5d9i13lc5rm2qnssd0qdich";
2019-10-08 13:00:00 +01:00
};
nativeBuildInputs = [
wrapGAppsHook intltool
] ++ (with python3Packages; [
setuptools distutils_extra
]);
buildInputs = [
gtk3 poppler_gi
];
propagatedBuildInputs = with python3Packages; [
pygobject3
2020-04-11 13:00:00 +01:00
pikepdf
2020-07-16 13:00:00 +01:00
img2pdf
2020-04-11 13:00:00 +01:00
setuptools
2019-10-08 13:00:00 +01:00
];
# incompatible with wrapGAppsHook
strictDeps = false;
doCheck = false; # no tests
meta = with lib; {
inherit (src.meta) homepage;
description = "Merge or split pdf documents and rotate, crop and rearrange their pages using an interactive and intuitive graphical interface";
platforms = platforms.linux;
maintainers = with maintainers; [ symphorien ];
license = licenses.gpl3;
};
}