volctl: switch to Python 3

This commit is contained in:
Jan Tojnar 2020-10-18 22:16:58 +02:00
parent 330ac8b3dc
commit 268f2d1478
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pythonPackages, libpulseaudio, glib, gtk3, gobject-introspection, wrapGAppsHook }:
{ stdenv, fetchFromGitHub, python3, libpulseaudio, glib, gtk3, gobject-introspection, wrapGAppsHook }:
pythonPackages.buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "volctl";
version = "0.6.3";
@ -22,7 +22,7 @@ pythonPackages.buildPythonApplication rec {
libpulseaudio
];
pythonPath = with pythonPackages; [
pythonPath = with python3.pkgs; [
pygobject3
];