python3Packages.roombapy: 1.6.2-1 -> 1.6.3

wip/little-gl
Fabian Affolter 3 years ago
parent c7fbb3e6b4
commit 92b12e0687
  1. 30
      pkgs/development/python-modules/roombapy/default.nix

@ -1,31 +1,41 @@
{ 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
];
pytestFlagsArray = [ "tests/" ];
disabledTestPaths = [ "tests/test_discovery.py" ];
pythonImportsCheck = [ "roombapy" ];
meta = with lib; {

Loading…
Cancel
Save