summary refs log tree commit diff
path: root/pkgs
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
parenta6c7132abc972b91826db1cf6f820d6b1b454ba0 (diff)
downloadnixlib-bf256564f9489417696e1986483068f1ae6e07f4.tar
nixlib-bf256564f9489417696e1986483068f1ae6e07f4.tar.gz
nixlib-bf256564f9489417696e1986483068f1ae6e07f4.tar.bz2
nixlib-bf256564f9489417696e1986483068f1ae6e07f4.tar.lz
nixlib-bf256564f9489417696e1986483068f1ae6e07f4.tar.xz
nixlib-bf256564f9489417696e1986483068f1ae6e07f4.tar.zst
nixlib-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')
-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 d66c0b0a9451..28b13c782b91 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";