1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
docopt,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
jdk11,
|
|
psutil,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adb-enhanced";
|
|
version = "2.5.24";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ashishb";
|
|
repo = "adb-enhanced";
|
|
tag = version;
|
|
hash = "sha256-0HxeL6VGM+HTiAxs3NFRcEFbmH9q+0/pJdGyF1hl4hU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
psutil
|
|
docopt
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace adbe/adb_enhanced.py \
|
|
--replace-fail "cmd = 'java" "cmd = '${jdk11}/bin/java"
|
|
'';
|
|
|
|
# Disable tests because they require a dedicated Android emulator
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "adbe" ];
|
|
|
|
meta = {
|
|
description = "Tool for Android testing and development";
|
|
homepage = "https://github.com/ashishb/adb-enhanced";
|
|
sourceProvenance = with lib.sourceTypes; [
|
|
fromSource
|
|
binaryBytecode
|
|
];
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ vtuan10 ];
|
|
mainProgram = "adbe";
|
|
};
|
|
}
|