pdfarranger: init at 1.3.1

This commit is contained in:
Symphorien Gibol 2019-10-08 12:00:00 +00:00
parent 07d4df5962
commit 226207d7b1
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ stdenv, fetchFromGitHub, lib
, wrapGAppsHook, intltool
, python3Packages, gtk3, poppler_gi
}:
python3Packages.buildPythonApplication rec {
pname = "pdfarranger";
version = "1.3.1";
src = fetchFromGitHub {
owner = "jeromerobert";
repo = pname;
rev = version;
sha256 = "1f8m8r81322i97wkqpmf7a4kiwnq244n6cnbldh03jc49vwq2kxx";
};
nativeBuildInputs = [
wrapGAppsHook intltool
] ++ (with python3Packages; [
setuptools distutils_extra
]);
buildInputs = [
gtk3 poppler_gi
];
propagatedBuildInputs = with python3Packages; [
pygobject3
pypdf2
];
# 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;
};
}

View file

@ -5448,6 +5448,8 @@ in
jbig2enc = callPackage ../tools/graphics/jbig2enc { };
pdfarranger = callPackage ../applications/misc/pdfarranger { };
pdfread = callPackage ../tools/graphics/pdfread {
inherit (pythonPackages) pillow;
};