Merge pull request #121776 from fabaff/bump-roombapy

Changed files
+88 -10
pkgs
development
python-modules
amqtt
roombapy
servers
home-assistant
top-level
+64
pkgs/development/python-modules/amqtt/default.nix
···
+
{ lib
+
, buildPythonPackage
+
, docopt
+
, fetchFromGitHub
+
, hypothesis
+
, passlib
+
, poetry-core
+
, pytest-asyncio
+
, pytestCheckHook
+
, pythonOlder
+
, pyyaml
+
, transitions
+
, websockets
+
}:
+
+
buildPythonPackage rec {
+
pname = "amqtt";
+
version = "0.10.0-alpha.3";
+
format = "pyproject";
+
disabled = pythonOlder "3.7";
+
+
src = fetchFromGitHub {
+
owner = "Yakifo";
+
repo = pname;
+
rev = "v${version}";
+
sha256 = "0wz85ykjgi2174qcdgpakmc4m0p96v62az7pvc9hyallq1v1k4n6";
+
};
+
+
nativeBuildInputs = [ poetry-core ];
+
+
propagatedBuildInputs = [
+
docopt
+
passlib
+
pyyaml
+
transitions
+
websockets
+
];
+
+
checkInputs = [
+
hypothesis
+
pytest-asyncio
+
pytestCheckHook
+
];
+
+
disabledTestPaths = [
+
# Test are not ported from hbmqtt yet
+
"tests/test_cli.py"
+
"tests/test_client.py"
+
];
+
+
disabledTests = [
+
# Requires network access
+
"test_connect_tcp"
+
];
+
+
pythonImportsCheck = [ "amqtt" ];
+
+
meta = with lib; {
+
description = "Python MQTT client and broker implementation";
+
homepage = "https://amqtt.readthedocs.io/";
+
license = with licenses; [ mit ];
+
maintainers = with maintainers; [ fab ];
+
};
+
}
+21 -10
pkgs/development/python-modules/roombapy/default.nix
···
-
{ buildPythonPackage
+
{ lib
+
, amqtt
+
, buildPythonPackage
, fetchFromGitHub
-
, hbmqtt
-
, lib
, paho-mqtt
-
, poetry
+
, poetry-core
, pytest-asyncio
, pytestCheckHook
+
, pythonOlder
}:
buildPythonPackage rec {
pname = "roombapy";
-
version = "1.6.2-1";
+
version = "1.6.3";
+
format = "pyproject";
+
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pschmitt";
repo = "roombapy";
rev = version;
-
sha256 = "14k7bys479xwpa4alpdwphzmxm3x8kc48nfqnshn1wj94vyxc425";
+
sha256 = "sha256-GkDfIC2jx4Mpguk/Wu45pZw0czhabJwTz58WYSLCOV8=";
};
-
format = "pyproject";
+
nativeBuildInputs = [ poetry-core ];
-
nativeBuildInputs = [ poetry ];
propagatedBuildInputs = [ paho-mqtt ];
-
checkInputs = [ hbmqtt pytest-asyncio pytestCheckHook ];
-
pytestFlagsArray = [ "tests/" "--ignore=tests/test_discovery.py" ];
+
checkInputs = [
+
amqtt
+
pytest-asyncio
+
pytestCheckHook
+
];
+
+
disabledTestPaths = [
+
# Requires network access
+
"tests/test_discovery.py"
+
];
+
pythonImportsCheck = [ "roombapy" ];
meta = with lib; {
+1
pkgs/servers/home-assistant/default.nix
···
"rituals_perfume_genie"
"rmvtransport"
"roku"
+
"roomba"
"rss_feed_template"
"ruckus_unleashed"
"safe_mode"
+2
pkgs/top-level/python-packages.nix
···
amqplib = callPackage ../development/python-modules/amqplib { };
+
amqtt = callPackage ../development/python-modules/amqtt { };
+
android-backup = callPackage ../development/python-modules/android-backup { };
androidtv = callPackage ../development/python-modules/androidtv { };