mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 08:04:15 +01:00
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
zeroconf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-rabbitair";
|
|
version = "0.0.8";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rabbit-air";
|
|
repo = "python-rabbitair";
|
|
rev = "v${version}";
|
|
hash = "sha256-CGr7NvnGRNTiKq5BpB/zmfgyd/2ggTbO0nj+Q+MavTs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
zeroconf
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "rabbitair" ];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_info"
|
|
"test_no_response"
|
|
"test_protocol_error"
|
|
"test_sequential_requests"
|
|
"test_set_state"
|
|
"test_state_a2"
|
|
"test_state_a3"
|
|
"test_zeroconf"
|
|
];
|
|
|
|
meta = {
|
|
description = "Module for the control of Rabbit Air air purifiers";
|
|
homepage = "https://github.com/rabbit-air/python-rabbitair";
|
|
license = with lib.licenses; [ asl20 ];
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|