10 buildPythonPackage rec {
11 pname = "adb-enhanced";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-n1CME/swV+NsZdUfWwVY1qQeYzawwy+sm0mkRPQKm6A=";
24 propagatedBuildInputs = [
30 substituteInPlace adbe/adb_enhanced.py \
31 --replace "cmd = 'java" "cmd = '${jdk11}/bin/java"
34 # Disable tests because they require a dedicated Android emulator
37 pythonImportsCheck = [
42 description = "Tool for Android testing and development";
43 homepage = "https://github.com/ashishb/adb-enhanced";
44 sourceProvenance = with sourceTypes; [
48 license = licenses.asl20;
49 maintainers = with maintainers; [ vtuan10 ];