nixpkgs/pkgs/development/python-modules/adb-shell/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

63 lines
1.1 KiB
Nix

{
lib,
pythonOlder,
aiofiles,
async-timeout,
buildPythonPackage,
cryptography,
fetchFromGitHub,
isPy3k,
libusb1,
mock,
pyasn1,
pycryptodome,
pytestCheckHook,
rsa,
}:
buildPythonPackage rec {
pname = "adb-shell";
version = "0.4.4";
format = "setuptools";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "JeffLIrion";
repo = "adb_shell";
rev = "v${version}";
hash = "sha256-pOkFUh3SEu/ch9R1lVoQn50nufQp8oI+D4/+Ybal5CA=";
};
propagatedBuildInputs = [
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 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 ];
};
}