about summary refs log tree commit diff
path: root/pkgs/tools/audio/volctl
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-10-18 22:16:58 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-10-24 01:18:45 +0200
commit268f2d1478c53f125cd8f4f53e8d2bae375591fe (patch)
tree08532b1d530cfeec675c5b1c2da43899affe4e59 /pkgs/tools/audio/volctl
parent330ac8b3dcf1fbd76c21e05d4d88826799327d9c (diff)
volctl: switch to Python 3
Diffstat (limited to 'pkgs/tools/audio/volctl')
-rw-r--r--pkgs/tools/audio/volctl/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/audio/volctl/default.nix b/pkgs/tools/audio/volctl/default.nix
index dd58671824db0..2a55015be1052 100644
--- a/pkgs/tools/audio/volctl/default.nix
+++ b/pkgs/tools/audio/volctl/default.nix
@@ -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
   ];