8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
52 lines
974 B
Nix
52 lines
974 B
Nix
{ lib
|
|
, adb-shell
|
|
, aiofiles
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, pure-python-adb
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "androidtv";
|
|
version = "0.0.66";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JeffLIrion";
|
|
repo = "python-androidtv";
|
|
rev = "v${version}";
|
|
hash = "sha256-gSbckVjM49nVfzpk9sfynJDx15+zQ/KgaI7oxEkXQpo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
adb-shell
|
|
aiofiles
|
|
pure-python-adb
|
|
];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Requires git but fails anyway
|
|
"test_no_underscores"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"androidtv"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Communicate with an Android TV or Fire TV device via ADB over a network";
|
|
homepage = "https://github.com/JeffLIrion/python-androidtv/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jamiemagee ];
|
|
};
|
|
}
|