mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
873 B
Nix
35 lines
873 B
Nix
{ lib, jdk11, fetchFromGitHub, buildPythonPackage, docopt, psutil, pythonOlder }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adb-enhanced";
|
|
version = "2.5.9";
|
|
|
|
disabled = pythonOlder "3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ashishb";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "08fmb55p80fbx2cix6qv2gpw3fi5ic3q17vzvza9brfwx6z1g6dv";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace adbe/adb_enhanced.py \
|
|
--replace "cmd = 'java" "cmd = '${jdk11}/bin/java"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ psutil docopt ];
|
|
|
|
# Disable tests because they require a dedicated android emulator
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "adbe" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for Android testing and development";
|
|
homepage = "https://github.com/ashishb/adb-enhanced";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ vtuan10 ];
|
|
};
|
|
}
|