mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
setuptools-scm,
|
|
websocket-client,
|
|
zeroconf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "devolo-home-control-api";
|
|
version = "0.18.3";
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "2Fake";
|
|
repo = "devolo_home_control_api";
|
|
rev = "v${version}";
|
|
hash = "sha256-4AyC1DDYtKl8SwJf75BbzoOAhbZXmBZ05ma9YmLzksM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
zeroconf
|
|
websocket-client
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
];
|
|
|
|
# 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 ];
|
|
};
|
|
}
|