58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, websocket_client
|
|
, zeroconf
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "devolo-home-control-api";
|
|
version = "0.17.3";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "2Fake";
|
|
repo = "devolo_home_control_api";
|
|
rev = "v${version}";
|
|
sha256 = "1h7admqb1l28sxwhhkkhw0sfzgpn8zpczvmi3h28f68csflkv379";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
zeroconf
|
|
websocket_client
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
];
|
|
|
|
postPatch = ''
|
|
# setup.py is not able to detect the version with setuptools_scm
|
|
substituteInPlace setup.py \
|
|
--replace "setuptools_scm" "" \
|
|
--replace 'use_scm_version=True' 'use_scm_version="${version}"'
|
|
'';
|
|
|
|
# Disable test that requires network access
|
|
disabledTests = [
|
|
"test__on_pong"
|
|
"TestMprm"
|
|
];
|
|
|
|
pythonImportsCheck = [ "devolo_home_control_api" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to work with devolo Home Control";
|
|
homepage = "https://github.com/2Fake/devolo_home_control_api";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|