Loading pkgs/development/python-modules/pylitejet/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, pyserial, pythonOlder, setuptools-scm, }: buildPythonPackage rec { pname = "pylitejet"; version = "0.6.3"; pyproject = true; disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "joncar"; repo = "pylitejet"; rev = "refs/tags/v${version}"; hash = "sha256-LHNMKU7aMDtSi4K+pZqRF9vAL3EKOFRFFNXKsQJVP2Y="; }; build-system = [ setuptools-scm ]; dependencies = [ pyserial ]; # Only custom tests which uses the CLi are available doCheck = false; pythonImportsCheck = [ "pylitejet" ]; meta = { description = "Library for interfacing with the LiteJet lighting system"; homepage = "https://github.com/joncar/pylitejet"; changelog = "https://github.com/joncar/pylitejet/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; } pkgs/servers/home-assistant/component-packages.nix +3 −1 Original line number Diff line number Diff line Loading @@ -2414,7 +2414,8 @@ "lirc" = ps: with ps; [ ]; # missing inputs: python-lirc "litejet" = ps: with ps; [ ]; # missing inputs: pylitejet pylitejet ]; "litterrobot" = ps: with ps; [ pylitterbot ]; Loading Loading @@ -5404,6 +5405,7 @@ "light" "linear_garage_door" "linkplay" "litejet" "litterrobot" "livisi" "local_calendar" Loading pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11617,6 +11617,8 @@ self: super: with self; { pylion = callPackage ../development/python-modules/pylion { }; pylitejet = callPackage ../development/python-modules/pylitejet { }; pylitterbot = callPackage ../development/python-modules/pylitterbot { }; py-libzfs = callPackage ../development/python-modules/py-libzfs { }; Loading Loading
pkgs/development/python-modules/pylitejet/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, pyserial, pythonOlder, setuptools-scm, }: buildPythonPackage rec { pname = "pylitejet"; version = "0.6.3"; pyproject = true; disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "joncar"; repo = "pylitejet"; rev = "refs/tags/v${version}"; hash = "sha256-LHNMKU7aMDtSi4K+pZqRF9vAL3EKOFRFFNXKsQJVP2Y="; }; build-system = [ setuptools-scm ]; dependencies = [ pyserial ]; # Only custom tests which uses the CLi are available doCheck = false; pythonImportsCheck = [ "pylitejet" ]; meta = { description = "Library for interfacing with the LiteJet lighting system"; homepage = "https://github.com/joncar/pylitejet"; changelog = "https://github.com/joncar/pylitejet/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; }
pkgs/servers/home-assistant/component-packages.nix +3 −1 Original line number Diff line number Diff line Loading @@ -2414,7 +2414,8 @@ "lirc" = ps: with ps; [ ]; # missing inputs: python-lirc "litejet" = ps: with ps; [ ]; # missing inputs: pylitejet pylitejet ]; "litterrobot" = ps: with ps; [ pylitterbot ]; Loading Loading @@ -5404,6 +5405,7 @@ "light" "linear_garage_door" "linkplay" "litejet" "litterrobot" "livisi" "local_calendar" Loading
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11617,6 +11617,8 @@ self: super: with self; { pylion = callPackage ../development/python-modules/pylion { }; pylitejet = callPackage ../development/python-modules/pylitejet { }; pylitterbot = callPackage ../development/python-modules/pylitterbot { }; py-libzfs = callPackage ../development/python-modules/py-libzfs { }; Loading