about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-10 02:28:09 +0100
committerGitHub <noreply@github.com>2021-01-10 02:28:09 +0100
commitc42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e (patch)
tree4627417722b30229abe88443ec1ea71c805e3ced
parent66dc4881b2f6b8415d2afaaa178f481b660c7a52 (diff)
parent59c3c445c811551273c35c307aa095ba2e2dab61 (diff)
downloadnixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.tar
nixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.tar.gz
nixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.tar.bz2
nixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.tar.lz
nixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.tar.xz
nixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.tar.zst
nixlib-c42a4f0cf016bf1c8fd5a370e4c7c64d4214e83e.zip
Merge pull request #108712 from fabaff/airly
-rw-r--r--pkgs/development/python-modules/airly/default.nix35
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix2
-rw-r--r--pkgs/top-level/python-packages.nix2
3 files changed, 38 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/airly/default.nix b/pkgs/development/python-modules/airly/default.nix
new file mode 100644
index 000000000000..e75653fb684a
--- /dev/null
+++ b/pkgs/development/python-modules/airly/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, aiohttp
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+  pname = "airly";
+  version = "1.0.0";
+
+  src = fetchFromGitHub {
+    owner = "ak-ambi";
+    repo = "python-airly";
+    rev = "v${version}";
+    sha256 = "0an6nbl0i5pahxm6x4z03s9apzgqrw9zf7srjcs0r3y1ppicb4s6";
+  };
+
+  propagatedBuildInputs = [ aiohttp ];
+
+  checkInputs = [ pytestCheckHook ];
+
+  disabledTests = [
+    "InstallationsLoaderTestCase"
+    "MeasurementsSessionTestCase"
+  ];
+  pythonImportsCheck = [ "airly" ];
+
+  meta = with lib; {
+    description = "Python module for getting air quality data from Airly sensors";
+    homepage = "https://github.com/ak-ambi/python-airly";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ fab ];
+  };
+}
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 5429fa79925d..4e7f4ff5d0c1 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -15,7 +15,7 @@
     "aftership" = ps: with ps; [ pyaftership ];
     "agent_dvr" = ps: with ps; [ ]; # missing inputs: agent-py
     "air_quality" = ps: with ps; [ ];
-    "airly" = ps: with ps; [ ]; # missing inputs: airly
+    "airly" = ps: with ps; [ airly ];
     "airvisual" = ps: with ps; [ pyairvisual ];
     "aladdin_connect" = ps: with ps; [ ]; # missing inputs: aladdin_connect
     "alarm_control_panel" = ps: with ps; [ ];
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index f95cdb6d59c9..d9778b141e21 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -273,6 +273,8 @@ in {
 
   aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };
 
+  airly = callPackage ../development/python-modules/airly { };
+
   ajpy = callPackage ../development/python-modules/ajpy { };
 
   alabaster = callPackage ../development/python-modules/alabaster { };