Loading pkgs/development/python-modules/airpatrol/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, aiohttp, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pytest-asyncio, setuptools, }: buildPythonPackage rec { pname = "airpatrol"; version = "0.1.0"; pyproject = true; src = fetchFromGitHub { owner = "antondalgren"; repo = "airpatrol"; tag = "v${version}"; hash = "sha256-KPch1GsJ5my43d9SVpwGA2EmrkmeBGJWAkY51rDofTk="; }; build-system = [ setuptools ]; dependencies = [ aiohttp ]; nativeCheckInputs = [ pytestCheckHook pytest-asyncio ]; pythonImportsCheck = [ "airpatrol" ]; meta = { description = "Python package for interacting with AirPatrol devices"; homepage = "https://github.com/antondalgren/airpatrol"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ jamiemagee ]; }; } pkgs/servers/home-assistant/component-packages.nix +3 −1 Original line number Diff line number Diff line Loading @@ -126,7 +126,8 @@ ]; "airpatrol" = ps: with ps; [ ]; # missing inputs: airpatrol airpatrol ]; "airq" = ps: with ps; [ aioairq Loading Loading @@ -7178,6 +7179,7 @@ "airnow" "airobot" "airos" "airpatrol" "airq" "airthings" "airthings_ble" Loading pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -584,6 +584,8 @@ self: super: with self; { airos = callPackage ../development/python-modules/airos { }; airpatrol = callPackage ../development/python-modules/airpatrol { }; airportsdata = callPackage ../development/python-modules/airportsdata { }; airthings-ble = callPackage ../development/python-modules/airthings-ble { }; Loading Loading
pkgs/development/python-modules/airpatrol/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, aiohttp, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pytest-asyncio, setuptools, }: buildPythonPackage rec { pname = "airpatrol"; version = "0.1.0"; pyproject = true; src = fetchFromGitHub { owner = "antondalgren"; repo = "airpatrol"; tag = "v${version}"; hash = "sha256-KPch1GsJ5my43d9SVpwGA2EmrkmeBGJWAkY51rDofTk="; }; build-system = [ setuptools ]; dependencies = [ aiohttp ]; nativeCheckInputs = [ pytestCheckHook pytest-asyncio ]; pythonImportsCheck = [ "airpatrol" ]; meta = { description = "Python package for interacting with AirPatrol devices"; homepage = "https://github.com/antondalgren/airpatrol"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ jamiemagee ]; }; }
pkgs/servers/home-assistant/component-packages.nix +3 −1 Original line number Diff line number Diff line Loading @@ -126,7 +126,8 @@ ]; "airpatrol" = ps: with ps; [ ]; # missing inputs: airpatrol airpatrol ]; "airq" = ps: with ps; [ aioairq Loading Loading @@ -7178,6 +7179,7 @@ "airnow" "airobot" "airos" "airpatrol" "airq" "airthings" "airthings_ble" Loading
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -584,6 +584,8 @@ self: super: with self; { airos = callPackage ../development/python-modules/airos { }; airpatrol = callPackage ../development/python-modules/airpatrol { }; airportsdata = callPackage ../development/python-modules/airportsdata { }; airthings-ble = callPackage ../development/python-modules/airthings-ble { }; Loading