summary refs log tree commit diff
path: root/pkgs/tools/graphics/pdfredacttools
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 15:37:25 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 15:42:39 +0200
commitbf256564f9489417696e1986483068f1ae6e07f4 (patch)
tree26643216c4a10bd6381343a6550ce549b2b0e78e /pkgs/tools/graphics/pdfredacttools
parenta6c7132abc972b91826db1cf6f820d6b1b454ba0 (diff)
downloadnixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.tar
nixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.tar.gz
nixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.tar.bz2
nixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.tar.lz
nixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.tar.xz
nixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.tar.zst
nixpkgs-bf256564f9489417696e1986483068f1ae6e07f4.zip
pdf-redact-tools: explicitly use python2Packages
Python2-only syntax, e.g. print without paratheses, is used in the pdf-redact-tools script.
Diffstat (limited to 'pkgs/tools/graphics/pdfredacttools')
-rw-r--r--pkgs/tools/graphics/pdfredacttools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/pdfredacttools/default.nix b/pkgs/tools/graphics/pdfredacttools/default.nix
index d66c0b0a945..28b13c782b9 100644
--- a/pkgs/tools/graphics/pdfredacttools/default.nix
+++ b/pkgs/tools/graphics/pdfredacttools/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub, pythonPackages, imagemagick, exiftool, file, ghostscript }:
+{ stdenv, fetchFromGitHub, python2Packages, imagemagick, exiftool, file, ghostscript }:
 
-pythonPackages.buildPythonApplication rec {
+python2Packages.buildPythonApplication rec {
   pname = "pdf-redact-tools";
   version = "0.1.2";