Merge pull request #110808 from symphorien/nixos-unstable

pdfarranger: 1.6.2 -> 1.7.0
This commit is contained in:
Sandro 2021-01-25 23:21:39 +01:00 committed by GitHub
commit ae0b40ab50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,13 +5,13 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "pdfarranger"; pname = "pdfarranger";
version = "1.6.2"; version = "1.7.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "wJ6ImWpszfgErfLh7YgHirVKFIt0ij8A/CdYJmkNBP0="; sha256 = "0dmgmvpghsm938iznalbg8h8k17a5h3q466yfc67mcll428n4nx3";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -29,6 +29,7 @@ python3Packages.buildPythonApplication rec {
pikepdf pikepdf
img2pdf img2pdf
setuptools setuptools
dateutil
]; ];
# incompatible with wrapGAppsHook # incompatible with wrapGAppsHook
@ -45,6 +46,6 @@ python3Packages.buildPythonApplication rec {
description = "Merge or split pdf documents and rotate, crop and rearrange their pages using an interactive and intuitive graphical interface"; description = "Merge or split pdf documents and rotate, crop and rearrange their pages using an interactive and intuitive graphical interface";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ symphorien ]; maintainers = with maintainers; [ symphorien ];
license = licenses.gpl3; license = licenses.gpl3Plus;
}; };
} }