pdf-redact-tools: explicitly use python2Packages

Python2-only syntax, e.g. print without paratheses, is used in the pdf-redact-tools script.
This commit is contained in:
Robert Schütz 2018-08-03 15:37:25 +02:00
parent a6c7132abc
commit bf256564f9

View File

@ -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";