Loading pkgs/development/python-modules/airtouch5py/default.nix 0 → 100644 +53 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, pythonOlder, fetchFromGitHub, # build-system poetry-core, pythonRelaxDepsHook, # dependencies bitarray, crc, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "airtouch5py"; version = "0.2.8"; pyproject = true; disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "danzel"; repo = "airtouch5py"; rev = "refs/tags/${version}"; hash = "sha256-MpwppyAWDiA3CZXCIUQ/vidzcxKXZJSlrFRhmrPMgCE="; }; build-system = [ poetry-core ]; nativeBuildInputs = [ pythonRelaxDepsHook ]; pythonRelaxDeps = [ "crc" ]; dependencies = [ bitarray crc ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "airtouch5py" ]; meta = with lib; { changelog = "https://github.com/danzel/airtouch5py/releases/tag/${version}"; description = "Python client for the airtouch 5"; homepage = "https://github.com/danzel/airtouch5py"; license = licenses.asl20; maintainers = with maintainers; [ jamiemagee ]; }; } pkgs/servers/home-assistant/component-packages.nix +2 −1 Original line number Diff line number Diff line Loading @@ -97,7 +97,8 @@ airtouch4pyapi ]; "airtouch5" = ps: with ps; [ ]; # missing inputs: airtouch5py airtouch5py ]; "airvisual" = ps: with ps; [ pyairvisual ]; Loading pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -467,6 +467,8 @@ self: super: with self; { airtouch4pyapi = callPackage ../development/python-modules/airtouch4pyapi { }; airtouch5py = callPackage ../development/python-modules/airtouch5py { }; ajpy = callPackage ../development/python-modules/ajpy { }; ajsonrpc = callPackage ../development/python-modules/ajsonrpc { }; Loading Loading
pkgs/development/python-modules/airtouch5py/default.nix 0 → 100644 +53 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, pythonOlder, fetchFromGitHub, # build-system poetry-core, pythonRelaxDepsHook, # dependencies bitarray, crc, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "airtouch5py"; version = "0.2.8"; pyproject = true; disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "danzel"; repo = "airtouch5py"; rev = "refs/tags/${version}"; hash = "sha256-MpwppyAWDiA3CZXCIUQ/vidzcxKXZJSlrFRhmrPMgCE="; }; build-system = [ poetry-core ]; nativeBuildInputs = [ pythonRelaxDepsHook ]; pythonRelaxDeps = [ "crc" ]; dependencies = [ bitarray crc ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "airtouch5py" ]; meta = with lib; { changelog = "https://github.com/danzel/airtouch5py/releases/tag/${version}"; description = "Python client for the airtouch 5"; homepage = "https://github.com/danzel/airtouch5py"; license = licenses.asl20; maintainers = with maintainers; [ jamiemagee ]; }; }
pkgs/servers/home-assistant/component-packages.nix +2 −1 Original line number Diff line number Diff line Loading @@ -97,7 +97,8 @@ airtouch4pyapi ]; "airtouch5" = ps: with ps; [ ]; # missing inputs: airtouch5py airtouch5py ]; "airvisual" = ps: with ps; [ pyairvisual ]; Loading
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -467,6 +467,8 @@ self: super: with self; { airtouch4pyapi = callPackage ../development/python-modules/airtouch4pyapi { }; airtouch5py = callPackage ../development/python-modules/airtouch5py { }; ajpy = callPackage ../development/python-modules/ajpy { }; ajsonrpc = callPackage ../development/python-modules/ajsonrpc { }; Loading