depot/third_party/nixpkgs/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
613 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pure-python-adb-homeassistant";
version = "0.1.6.dev0";
src = fetchPypi {
inherit pname version;
sha256 = "fe6d90220a6880649f6d6df4e707ce5034676710ee6146145ef995f7b769a482";
};
# Disable tests as they require docker, docker-compose and a dedicated
# android emulator
doCheck = false;
meta = with lib; {
description = "Pure python implementation of the adb client";
homepage = "https://github.com/JeffLIrion/pure-python-adb";
license = licenses.mit;
maintainers = [ maintainers.makefu ];
};
}