about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioharmony
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-02-05 23:32:09 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-02-05 23:32:09 +0100
commit2b0cfaae9d71f9fcf9fb5246bb0e309ed6e10cb5 (patch)
tree3049fb5ebff468e5073ea7a03d8061db9c39baab /pkgs/development/python-modules/aioharmony
parente5b478271ea0af7b75d53c92cfa98bdb126b44a7 (diff)
python3Packages.aioharmony: 0.2.6 -> 0.2.7
Diffstat (limited to 'pkgs/development/python-modules/aioharmony')
-rw-r--r--pkgs/development/python-modules/aioharmony/default.nix27
1 files changed, 18 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/aioharmony/default.nix b/pkgs/development/python-modules/aioharmony/default.nix
index 0b6c68de8b4ca..3f2ee2fee3ea0 100644
--- a/pkgs/development/python-modules/aioharmony/default.nix
+++ b/pkgs/development/python-modules/aioharmony/default.nix
@@ -1,27 +1,36 @@
-{ lib, buildPythonPackage, fetchPypi, isPy3k, slixmpp, async-timeout, aiohttp }:
+{ lib
+, aiohttp
+, async-timeout
+, buildPythonPackage
+, fetchPypi
+, isPy3k
+, slixmpp
+}:
 
 buildPythonPackage rec {
   pname = "aioharmony";
-  version = "0.2.6";
+  version = "0.2.7";
+  disabled = !isPy3k;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "90f4d1220d44b48b21a57e0273aa3c4a51599d0097af88e8be26df151e599344";
+    sha256 = "sha256-aej8xC0Bsy6ip7IwO6onp55p6afkz8yZnz14cCExSPA=";
   };
 
-  disabled = !isPy3k;
+  propagatedBuildInputs = [
+    aiohttp
+    async-timeout
+    slixmpp
+  ];
 
-  #aioharmony does not seem to include tests
+  # aioharmony does not seem to include tests
   doCheck = false;
 
   pythonImportsCheck = [ "aioharmony.harmonyapi" "aioharmony.harmonyclient" ];
 
-  propagatedBuildInputs = [ slixmpp async-timeout aiohttp ];
-
   meta = with lib; {
     homepage = "https://github.com/ehendrix23/aioharmony";
-    description =
-      "Asyncio Python library for connecting to and controlling the Logitech Harmony";
+    description = "Python library for interacting the Logitech Harmony devices";
     license = licenses.asl20;
     maintainers = with maintainers; [ oro ];
   };