depot/third_party/nixpkgs/pkgs/development/python-modules/androidtv/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

57 lines
1.2 KiB
Nix

{
lib,
adb-shell,
aiofiles,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
mock,
pure-python-adb,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "androidtv";
version = "0.0.73";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "JeffLIrion";
repo = "python-androidtv";
rev = "v${version}";
hash = "sha256-FJUTJfS9jiC7KDf6XcGVRNXf75bVUOBPZe8y9M39Uak=";
};
propagatedBuildInputs = [
adb-shell
async-timeout
pure-python-adb
];
passthru.optional-dependencies = {
async = [ aiofiles ];
inherit (adb-shell.optional-dependencies) usb;
};
nativeCheckInputs = [
mock
pytestCheckHook
] ++ passthru.optional-dependencies.async ++ passthru.optional-dependencies.usb;
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 ];
};
}