3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #130236 from fabaff/bump-pure-python-adb-homeassistant

python3Packages.pure-python-adb-homeassistant: 0.1.6.dev0 -> 0.1.7.dev0
This commit is contained in:
Sandro 2021-07-15 21:45:03 +02:00 committed by GitHub
commit 44671cac1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];