python3Packages.roombapy: 1.6.2-1 -> 1.6.3

This commit is contained in:
Fabian Affolter 2021-05-05 10:07:41 +02:00
parent c7fbb3e6b4
commit 92b12e0687

View File

@ -1,31 +1,41 @@
{ buildPythonPackage { lib
, amqtt
, buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, hbmqtt
, lib
, paho-mqtt , paho-mqtt
, poetry , poetry-core
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "roombapy"; pname = "roombapy";
version = "1.6.2-1"; version = "1.6.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pschmitt"; owner = "pschmitt";
repo = "roombapy"; repo = "roombapy";
rev = version; rev = version;
sha256 = "14k7bys479xwpa4alpdwphzmxm3x8kc48nfqnshn1wj94vyxc425"; sha256 = "sha256-GkDfIC2jx4Mpguk/Wu45pZw0czhabJwTz58WYSLCOV8=";
}; };
format = "pyproject"; nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [ poetry ];
propagatedBuildInputs = [ paho-mqtt ]; propagatedBuildInputs = [ paho-mqtt ];
checkInputs = [ hbmqtt pytest-asyncio pytestCheckHook ]; checkInputs = [
pytestFlagsArray = [ "tests/" "--ignore=tests/test_discovery.py" ]; amqtt
pytest-asyncio
pytestCheckHook
];
pytestFlagsArray = [ "tests/" ];
disabledTestPaths = [ "tests/test_discovery.py" ];
pythonImportsCheck = [ "roombapy" ]; pythonImportsCheck = [ "roombapy" ];
meta = with lib; { meta = with lib; {