pythonPackages.openrazer-daemon: python3 only

The build [fails](https://hydra.nixos.org/build/102502339) due to not finding
the python3 interpreter; as far as I can tell, all scripts in the package
refer to python3.

For [ZHF](https://github.com/NixOS/nixpkgs/issues/68361)
This commit is contained in:
Joachim Fasting 2019-10-05 19:25:50 +02:00
parent 2436c27541
commit 1b813fa016
No known key found for this signature in database
GPG Key ID: 5C204DF675C90294

View File

@ -1,4 +1,5 @@
{ buildPythonApplication
, isPy3k
, daemonize
, dbus-python
, fetchFromGitHub
@ -21,6 +22,8 @@ buildPythonApplication (common // rec {
sourceRoot = "source/daemon";
disabled = !isPy3k;
outputs = [ "out" "man" ];
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];