Loading pkgs/development/python-modules/pydeako/default.nix 0 → 100644 +49 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, mock, pytest-asyncio, pytestCheckHook, pythonOlder, setuptools, zeroconf, }: buildPythonPackage rec { pname = "pydeako"; version = "0.5.4"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "DeakoLights"; repo = "pydeako"; rev = "refs/tags/${version}"; hash = "sha256-Z0H5VhWfjmvvCGTX//hds9dwk2wJSPXckNac1PkQZNA="; }; build-system = [ setuptools ]; dependencies = [ zeroconf ]; # Module has no tests #doCheck = false; nativeCheckInputs = [ mock pytest-asyncio pytestCheckHook ]; pythonImportsCheck = [ "pydeako" ]; meta = { description = "Module used to discover and communicate with Deako devices over the network locally"; homepage = "https://github.com/DeakoLights/pydeako"; changelog = "https://github.com/DeakoLights/pydeako/releases/tag/${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 @@ -754,8 +754,9 @@ ]; "deako" = ps: with ps; [ ifaddr pydeako zeroconf ]; # missing inputs: pydeako ]; "debugpy" = ps: with ps; [ debugpy ]; Loading Loading @@ -5126,6 +5127,7 @@ "datadog" "date" "datetime" "deako" "debugpy" "deconz" "default_config" Loading pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11218,6 +11218,8 @@ self: super: with self; { pydbus = callPackage ../development/python-modules/pydbus { }; pydeako = callPackage ../development/python-modules/pydeako { }; pydeck = callPackage ../development/python-modules/pydeck { }; pydeconz = callPackage ../development/python-modules/pydeconz { }; Loading Loading
pkgs/development/python-modules/pydeako/default.nix 0 → 100644 +49 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, mock, pytest-asyncio, pytestCheckHook, pythonOlder, setuptools, zeroconf, }: buildPythonPackage rec { pname = "pydeako"; version = "0.5.4"; pyproject = true; disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "DeakoLights"; repo = "pydeako"; rev = "refs/tags/${version}"; hash = "sha256-Z0H5VhWfjmvvCGTX//hds9dwk2wJSPXckNac1PkQZNA="; }; build-system = [ setuptools ]; dependencies = [ zeroconf ]; # Module has no tests #doCheck = false; nativeCheckInputs = [ mock pytest-asyncio pytestCheckHook ]; pythonImportsCheck = [ "pydeako" ]; meta = { description = "Module used to discover and communicate with Deako devices over the network locally"; homepage = "https://github.com/DeakoLights/pydeako"; changelog = "https://github.com/DeakoLights/pydeako/releases/tag/${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 @@ -754,8 +754,9 @@ ]; "deako" = ps: with ps; [ ifaddr pydeako zeroconf ]; # missing inputs: pydeako ]; "debugpy" = ps: with ps; [ debugpy ]; Loading Loading @@ -5126,6 +5127,7 @@ "datadog" "date" "datetime" "deako" "debugpy" "deconz" "default_config" Loading
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11218,6 +11218,8 @@ self: super: with self; { pydbus = callPackage ../development/python-modules/pydbus { }; pydeako = callPackage ../development/python-modules/pydeako { }; pydeck = callPackage ../development/python-modules/pydeck { }; pydeconz = callPackage ../development/python-modules/pydeconz { }; Loading