git-cola: build application with python3 by default

This commit is contained in:
Maximilian Bosch 2019-09-26 20:37:03 +02:00
parent 7c54149a25
commit 460e603852
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git, qt5 }:
{ stdenv, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
let
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
inherit (python3Packages) buildPythonApplication pyqt5 sip pyinotify;
in buildPythonApplication rec {
pname = "git-cola";