summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohue
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-05-07 19:19:05 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-05-07 19:19:05 +0200
commita061e0a034b9e6e70c05c41a8711fb5dcca09587 (patch)
tree88b57d71a8c7fdabe3667d36eb3c66ffaec798aa /pkgs/development/python-modules/aiohue
parent2fa6935e01232284c7a6cb1e87aad3041efdd6d9 (diff)
downloadnixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.tar
nixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.tar.gz
nixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.tar.bz2
nixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.tar.lz
nixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.tar.xz
nixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.tar.zst
nixpkgs-a061e0a034b9e6e70c05c41a8711fb5dcca09587.zip
python3Packages.aiohue: 2.2.0 -> 2.3.0
Diffstat (limited to 'pkgs/development/python-modules/aiohue')
-rw-r--r--pkgs/development/python-modules/aiohue/default.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/aiohue/default.nix b/pkgs/development/python-modules/aiohue/default.nix
index b495bf4df46..7b7bce8ac42 100644
--- a/pkgs/development/python-modules/aiohue/default.nix
+++ b/pkgs/development/python-modules/aiohue/default.nix
@@ -1,15 +1,29 @@
-{ lib, buildPythonPackage, fetchPypi, aiohttp }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, aiohttp
+}:
 
 buildPythonPackage rec {
   pname = "aiohue";
-  version = "2.2.0";
+  version = "2.3.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "35696d04d6eb0328b7031ea3c0a3cfe5d83dfcf62f920522e4767d165c6bc529";
+    sha256 = "1xinllv2cvxl9fxi15nayzw9lfzijb3m7i49gkkr46qr8xvsavyk";
   };
 
-  propagatedBuildInputs = [ aiohttp ];
+  propagatedBuildInputs = [
+    aiohttp
+  ];
+
+  pythonImportsCheck = [
+    "aiohue"
+    "aiohue.discovery"
+  ];
+
+  # has no tests
+  doCheck = false;
 
   meta = with lib; {
     description = "asyncio package to talk to Philips Hue";