bluez: use python3

This commit is contained in:
rnhmjoj 2018-06-03 03:37:23 +02:00 committed by Robert Schütz
parent 0fd688a1a5
commit 413d7f4425

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib,
pythonPackages, readline, udev, libical,
python3, readline, udev, libical,
systemd, enableWiimote ? false, enableMidi ? false }:
stdenv.mkDerivation rec {
@ -10,12 +10,12 @@ stdenv.mkDerivation rec {
sha256 = "048r91vx9gs5nwwbah2s0xig04nwk14c5s0vb7qmaqdvighsmz2z";
};
pythonPath = with pythonPackages; [
pythonPath = with python3.pkgs; [
dbus-python pygobject2 pygobject3 recursivePthLoader
];
buildInputs = [
dbus glib alsaLib pythonPackages.python pythonPackages.wrapPython
dbus glib alsaLib python3 python3.pkgs.wrapPython
readline udev libical
];