62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib
|
|
, aiofiles
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, isPy3k
|
|
, libusb1
|
|
, mock
|
|
, pyasn1
|
|
, pythonAtLeast
|
|
, pycryptodome
|
|
, pytestCheckHook
|
|
, rsa
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adb-shell";
|
|
version = "0.4.2";
|
|
format = "setuptools";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JeffLIrion";
|
|
repo = "adb_shell";
|
|
rev = "v${version}";
|
|
hash = "sha256-8tclSjmLlTAIeq6t7YPGtJwvSwtlzQ7sRAQatcQRzeY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiofiles
|
|
cryptography
|
|
libusb1
|
|
pyasn1
|
|
rsa
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pycryptodome
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.10") [
|
|
# Tests are failing with Python 3.10
|
|
# https://github.com/JeffLIrion/adb_shell/issues/198
|
|
"TestAdbDeviceAsync"
|
|
"TestTcpTransportAsync"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"adb_shell"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python implementation of ADB with shell and FileSync functionality";
|
|
homepage = "https://github.com/JeffLIrion/adb_shell";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jamiemagee ];
|
|
};
|
|
}
|