mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-09 02:23:20 -05:00
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
pythonOlder,
|
|
aiofiles,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
isPy3k,
|
|
libusb1,
|
|
mock,
|
|
pyasn1,
|
|
pycryptodome,
|
|
pytestCheckHook,
|
|
rsa,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "adb-shell";
|
|
version = "0.4.4";
|
|
pyproject = true;
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JeffLIrion";
|
|
repo = "adb_shell";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-pOkFUh3SEu/ch9R1lVoQn50nufQp8oI+D4/+Ybal5CA=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
cryptography
|
|
pyasn1
|
|
rsa
|
|
];
|
|
|
|
optional-dependencies = {
|
|
async = [
|
|
aiofiles
|
|
async-timeout
|
|
];
|
|
usb = [ libusb1 ];
|
|
};
|
|
|
|
doCheck = pythonOlder "3.12"; # FIXME: tests are broken on 3.13
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pycryptodome
|
|
pytestCheckHook
|
|
]
|
|
++ lib.concatAttrValues finalAttrs.optional-dependencies;
|
|
|
|
pythonImportsCheck = [ "adb_shell" ];
|
|
|
|
meta = {
|
|
description = "Python implementation of ADB with shell and FileSync functionality";
|
|
homepage = "https://github.com/JeffLIrion/adb_shell";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ jamiemagee ];
|
|
};
|
|
})
|