2025-06-03 06:27:47 +00:00

75 lines
1.3 KiB
Nix

{
lib,
amqtt,
buildPythonPackage,
click,
fetchFromGitHub,
mashumaro,
orjson,
paho-mqtt,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
tabulate,
}:
buildPythonPackage rec {
pname = "roombapy";
version = "1.9.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "pschmitt";
repo = "roombapy";
tag = version;
hash = "sha256-63PqNmJC0IWPPMVyZdKoZikvBA4phMcYxlTBk/m1cq0=";
};
nativeBuildInputs = [
poetry-core
];
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/${src.tag}";
license = licenses.mit;
maintainers = [ ];
};
}