mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 07:43:43 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib
|
|
, adb-shell
|
|
, aiofiles
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, pure-python-adb
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "androidtv";
|
|
version = "0.0.70";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JeffLIrion";
|
|
repo = "python-androidtv";
|
|
rev = "v${version}";
|
|
hash = "sha256-LKV5aO3sptHz48UYpP+zPk6pPhyHAZWAxiTTIWKHiSg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
adb-shell
|
|
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 ];
|
|
};
|
|
}
|