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:
parent
2436c27541
commit
1b813fa016
|
@ -1,4 +1,5 @@
|
||||||
{ buildPythonApplication
|
{ buildPythonApplication
|
||||||
|
, isPy3k
|
||||||
, daemonize
|
, daemonize
|
||||||
, dbus-python
|
, dbus-python
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -21,6 +22,8 @@ buildPythonApplication (common // rec {
|
||||||
|
|
||||||
sourceRoot = "source/daemon";
|
sourceRoot = "source/daemon";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
|
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
|
||||||
|
|
Loading…
Reference in New Issue