587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
79 lines
1.4 KiB
Nix
79 lines
1.4 KiB
Nix
{ lib
|
|
, amqtt
|
|
, buildPythonPackage
|
|
, click
|
|
, fetchFromGitHub
|
|
, mashumaro
|
|
, orjson
|
|
, paho-mqtt
|
|
, poetry-core
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, tabulate
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "roombapy";
|
|
version = "1.8.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pschmitt";
|
|
repo = "roombapy";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-1yfmaTzZ7cZW2+Yb3Zbo8+5TfD+H1sA0+SzC1c9MdsQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"orjson"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
mashumaro
|
|
orjson
|
|
paho-mqtt
|
|
];
|
|
|
|
optional-dependencies.cli = [
|
|
click
|
|
tabulate
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
amqtt
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Requires network access
|
|
"tests/test_discovery.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test want to connect to a local MQTT broker
|
|
"test_roomba_connect"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"roombapy"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python program and library to control Wi-Fi enabled iRobot Roombas";
|
|
mainProgram = "roombapy";
|
|
homepage = "https://github.com/pschmitt/roombapy";
|
|
changelog = "https://github.com/pschmitt/roombapy/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|