Merge pull request #142057 from fabaff/rename-airthings

authored by

Martin Weinelt and committed by
GitHub
de3b15f0 a766d57f

+4 -3
+1 -1
pkgs/development/python-modules/airthings/default.nix pkgs/development/python-modules/airthings-cloud/default.nix
··· 7 }: 8 9 buildPythonPackage rec { 10 - pname = "airthings"; 11 version = "0.0.1"; 12 format = "setuptools"; 13
··· 7 }: 8 9 buildPythonPackage rec { 10 + pname = "airthings-cloud"; 11 version = "0.0.1"; 12 format = "setuptools"; 13
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 19 "air_quality" = ps: with ps; [ ]; 20 "airly" = ps: with ps; [ airly ]; 21 "airnow" = ps: with ps; [ pyairnow ]; 22 - "airthings" = ps: with ps; [ ]; # missing inputs: airthings_cloud 23 "airtouch4" = ps: with ps; [ ]; # missing inputs: airtouch4pyapi 24 "airvisual" = ps: with ps; [ pyairvisual ]; 25 "aladdin_connect" = ps: with ps; [ aladdin-connect ];
··· 19 "air_quality" = ps: with ps; [ ]; 20 "airly" = ps: with ps; [ airly ]; 21 "airnow" = ps: with ps; [ pyairnow ]; 22 + "airthings" = ps: with ps; [ airthings-cloud ]; 23 "airtouch4" = ps: with ps; [ ]; # missing inputs: airtouch4pyapi 24 "airvisual" = ps: with ps; [ pyairvisual ]; 25 "aladdin_connect" = ps: with ps; [ aladdin-connect ];
+1
pkgs/servers/home-assistant/default.nix
··· 214 "air_quality" 215 "airly" 216 "airnow" 217 "airvisual" 218 "alarm_control_panel" 219 "alarmdecoder"
··· 214 "air_quality" 215 "airly" 216 "airnow" 217 + "airthings" 218 "airvisual" 219 "alarm_control_panel" 220 "alarmdecoder"
+1 -1
pkgs/top-level/python-packages.nix
··· 405 406 airly = callPackage ../development/python-modules/airly { }; 407 408 - airthings = callPackage ../development/python-modules/airthings { }; 409 410 ajpy = callPackage ../development/python-modules/ajpy { }; 411
··· 405 406 airly = callPackage ../development/python-modules/airly { }; 407 408 + airthings-cloud = callPackage ../development/python-modules/airthings-cloud { }; 409 410 ajpy = callPackage ../development/python-modules/ajpy { }; 411