bottom: add gpu recognition, new apple sdk, refactor (#360568)
[NixPkgs.git] / pkgs / applications / misc / hue-plus / default.nix
blob637f37d504bea8edd331362612f18a3765225010
2   python3Packages,
3   fetchFromGitHub,
4   lib,
5   wrapQtAppsHook,
6   qtbase,
7 }:
9 python3Packages.buildPythonApplication rec {
10   pname = "hue-plus";
11   version = "1.4.5";
13   src = fetchFromGitHub {
14     owner = "kusti8";
15     repo = pname;
16     rev = "7ce7c4603c6d0ab1da29b0d4080aa05f57bd1760";
17     sha256 = "sha256-dDIJXhB3rmKnawOYJHE7WK38b0M5722zA+yLgpEjDyI=";
18   };
20   buildInputs = [ qtbase ];
22   nativeBuildInputs = [ wrapQtAppsHook ];
24   propagatedBuildInputs = with python3Packages; [
25     pyserial
26     pyqt5
27     pyaudio
28     appdirs
29     setuptools
30   ];
32   doCheck = false;
33   dontWrapQtApps = true;
35   makeWrapperArgs = [
36     "\${qtWrapperArgs[@]}"
37   ];
39   meta = with lib; {
40     homepage = "https://github.com/kusti8/hue-plus";
41     description = "Windows and Linux driver in Python for the NZXT Hue+";
42     longDescription = ''
43       A cross-platform driver in Python for the NZXT Hue+. Supports all functionality except FPS, CPU, and GPU lighting.
44     '';
45     license = licenses.gpl3Only;
46     maintainers = with maintainers; [ garaiza-93 ];
47   };