3cbfd2b52c
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
88 lines
2 KiB
Nix
88 lines
2 KiB
Nix
{ lib
|
|
, aenum
|
|
, aiohttp
|
|
, aiohttp-wsgi
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pytest-aiohttp
|
|
, pytest-asyncio
|
|
, requests
|
|
, websocket-client
|
|
, websockets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "homematicip";
|
|
version = "1.0.1";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coreGreenberet";
|
|
repo = "homematicip-rest-api";
|
|
rev = version;
|
|
sha256 = "008snxx9ijpi1zr1pi1v4a6g74j821hyw0khs9lmi08v2mcabm36";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# Drop loop kwarg from async_timeout.timeout
|
|
# https://github.com/coreGreenberet/homematicip-rest-api/pull/424
|
|
url = "https://github.com/coreGreenberet/homematicip-rest-api/commit/90efb335667e3d462b7f9ef113d2e0b8bb4e96b4.patch";
|
|
sha256 = "0f2bbs0666mf6sc7p4n8fwh29yjilkq36qf5pn0waf6iqdzxqwih";
|
|
})
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aenum
|
|
aiohttp
|
|
async-timeout
|
|
requests
|
|
websocket-client
|
|
websockets
|
|
];
|
|
|
|
checkInputs = [
|
|
aiohttp-wsgi
|
|
pytest-aiohttp
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Assert issues with datetime
|
|
"test_contact_interface_device"
|
|
"test_dimmer"
|
|
"test_heating_failure_alert_group"
|
|
"test_heating"
|
|
"test_humidity_warning_rule_group"
|
|
"test_meta_group"
|
|
"test_pluggable_switch_measuring"
|
|
"test_rotary_handle_sensor"
|
|
"test_security_group"
|
|
"test_security_zone"
|
|
"test_shutter_device"
|
|
"test_smoke_detector"
|
|
"test_switching_group"
|
|
"test_temperature_humidity_sensor_outdoor"
|
|
"test_wall_mounted_thermostat_pro"
|
|
"test_weather_sensor"
|
|
# Random failures
|
|
"test_home_getSecurityJournal"
|
|
"test_home_unknown_types"
|
|
# Requires network access
|
|
"test_websocket"
|
|
];
|
|
|
|
pythonImportsCheck = [ "homematicip" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module for the homematicIP REST API";
|
|
homepage = "https://github.com/coreGreenberet/homematicip-rest-api";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|