acpilight: use default python3

This commit is contained in:
Robert Schütz 2019-04-01 16:19:13 +02:00
parent 2fc28603b8
commit 2d8405b739

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, python36, udev, coreutils }:
{ stdenv, fetchgit, python3, udev, coreutils }:
stdenv.mkDerivation rec {
pname = "acpilight";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0kykrl71fb146vaq8207c3qp03h2djkn8hn6psryykk8gdzkv3xd";
};
pyenv = python36.withPackages (pythonPackages: with pythonPackages; [
pyenv = python3.withPackages (pythonPackages: with pythonPackages; [
ConfigArgParse
]);