1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5buildPythonPackage rec {
6 pname = "pure-python-adb-homeassistant";
7 version = "0.1.6.dev0";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "fe6d90220a6880649f6d6df4e707ce5034676710ee6146145ef995f7b769a482";
12 };
13
14 # Disable tests as they require docker, docker-compose and a dedicated
15 # android emulator
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Pure python implementation of the adb client";
20 homepage = "https://github.com/JeffLIrion/pure-python-adb";
21 license = licenses.mit;
22 maintainers = [ maintainers.makefu ];
23 };
24}