Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pure-python-adb-homeassistant / default.nix
blob8e40d182212dcf3eb506b032d08e8bb2bec1f013
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
5 buildPythonPackage rec {
6   pname = "pure-python-adb-homeassistant";
7   version = "0.1.7.dev0";
9   src = fetchPypi {
10     inherit pname version;
11     hash = "sha256-xXXEp8oYGcJLTfoBDUSZrIHSgDvB2EHbVMHoG4Hk+t8=";
12   };
14   # Disable tests as they require docker, docker-compose and a dedicated
15   # android emulator
16   doCheck = false;
18   pythonImportsCheck = [ "adb_messenger" ];
20   meta = with lib; {
21     description = "Python implementation of the ADB client";
22     homepage = "https://github.com/JeffLIrion/pure-python-adb";
23     license = licenses.mit;
24     maintainers = [ maintainers.makefu ];
25   };