lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.roombapy: 1.6.3 -> 1.6.4

+19 -7
+19 -7
pkgs/development/python-modules/roombapy/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "roombapy"; 14 - version = "1.6.3"; 14 + version = "1.6.4"; 15 15 format = "pyproject"; 16 + 16 17 disabled = pythonOlder "3.7"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "pschmitt"; 20 21 repo = "roombapy"; 21 22 rev = version; 22 - sha256 = "sha256-GkDfIC2jx4Mpguk/Wu45pZw0czhabJwTz58WYSLCOV8="; 23 + sha256 = "sha256-EN+em+lULAUplXlhcU409ZVPk9BfMmD2oNwO0ETuqoA="; 23 24 }; 24 25 25 - nativeBuildInputs = [ poetry-core ]; 26 + nativeBuildInputs = [ 27 + poetry-core 28 + ]; 26 29 27 - propagatedBuildInputs = [ paho-mqtt ]; 30 + propagatedBuildInputs = [ 31 + paho-mqtt 32 + ]; 28 33 29 34 checkInputs = [ 30 35 amqtt ··· 37 42 "tests/test_discovery.py" 38 43 ]; 39 44 40 - pythonImportsCheck = [ "roombapy" ]; 45 + disabledTests = [ 46 + # Test want to connect to a local MQTT broker 47 + "test_roomba_connect" 48 + ]; 49 + 50 + pythonImportsCheck = [ 51 + "roombapy" 52 + ]; 41 53 42 54 meta = with lib; { 43 - homepage = "https://github.com/pschmitt/roombapy"; 44 55 description = "Python program and library to control Wi-Fi enabled iRobot Roombas"; 56 + homepage = "https://github.com/pschmitt/roombapy"; 57 + license = licenses.mit; 45 58 maintainers = with maintainers; [ justinas ]; 46 - license = licenses.mit; 47 59 }; 48 60 }