cherrytree: use python2

This commit is contained in:
Frederik Rietdijk 2021-03-25 11:25:59 +01:00
parent 050fa17bd6
commit d56fdf8c4c

View File

@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, pythonPackages, gettext }: { lib, fetchFromGitHub, python2Packages, gettext }:
pythonPackages.buildPythonApplication rec { python2Packages.buildPythonApplication rec {
pname = "cherrytree"; pname = "cherrytree";
version = "0.39.4"; version = "0.39.4";
@ -14,7 +14,7 @@ pythonPackages.buildPythonApplication rec {
nativeBuildInputs = [ gettext ]; nativeBuildInputs = [ gettext ];
propagatedBuildInputs = with pythonPackages; [ pygtk dbus-python pygtksourceview ]; propagatedBuildInputs = with python2Packages; [ pygtk dbus-python pygtksourceview ];
patches = [ ./subprocess.patch ]; patches = [ ./subprocess.patch ];