about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pure-python-adb-homeassistant
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-14 23:28:57 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-14 23:28:57 +0200
commit36f416cc3bfc7f579c6cb7412811fce85455a588 (patch)
tree3a8d812c9d888bf86d276aaf462325c856b355ef /pkgs/development/python-modules/pure-python-adb-homeassistant
parentcd4d1621cd0e9cb591c81479d38b960431675ce0 (diff)
python3Packages.pure-python-adb-homeassistant: 0.1.6.dev0 -> 0.1.7.dev0
Diffstat (limited to 'pkgs/development/python-modules/pure-python-adb-homeassistant')
-rw-r--r--pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix
index acb9b73403b39..919ab61c60c1e 100644
--- a/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix
+++ b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix
@@ -4,19 +4,21 @@
 }:
 buildPythonPackage rec {
   pname = "pure-python-adb-homeassistant";
-  version = "0.1.6.dev0";
+  version = "0.1.7.dev0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "fe6d90220a6880649f6d6df4e707ce5034676710ee6146145ef995f7b769a482";
+    sha256 = "sha256-xXXEp8oYGcJLTfoBDUSZrIHSgDvB2EHbVMHoG4Hk+t8=";
   };
 
   # Disable tests as they require docker, docker-compose and a dedicated
   # android emulator
   doCheck = false;
 
+  pythonImportsCheck = [ "adb_messenger" ];
+
   meta = with lib; {
-    description = "Pure python implementation of the adb client";
+    description = "Python implementation of the ADB client";
     homepage = "https://github.com/JeffLIrion/pure-python-adb";
     license = licenses.mit;
     maintainers = [ maintainers.makefu ];