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