mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 00:12:39 +03:00
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
|
||||
, isPy3k
|
||||
, daemonize
|
||||
, dbus-python
|
||||
, fetchFromGitHub
|
||||
@ -21,6 +22,8 @@ buildPythonApplication (common // rec {
|
||||
|
||||
sourceRoot = "source/daemon";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
|
||||
|
Loading…
Reference in New Issue
Block a user