2020-11-03 02:18:15 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
2021-01-09 10:05:03 +00:00
|
|
|
, aiosqlite
|
2020-11-03 02:18:15 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, crccheck
|
2022-05-18 14:49:53 +00:00
|
|
|
, cryptography
|
2022-09-09 14:08:57 +00:00
|
|
|
, freezegun
|
2020-11-03 02:18:15 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, pycryptodome
|
2022-10-06 18:32:54 +00:00
|
|
|
, pyserial-asyncio
|
|
|
|
, pytest-asyncio
|
2021-08-08 23:34:03 +00:00
|
|
|
, pytest-timeout
|
2020-11-03 02:18:15 +00:00
|
|
|
, pytestCheckHook
|
2021-08-08 23:34:03 +00:00
|
|
|
, pythonOlder
|
|
|
|
, voluptuous
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-07-18 16:06:22 +00:00
|
|
|
pname = "zigpy";
|
2023-03-04 12:14:45 +00:00
|
|
|
version = "0.53.2";
|
2021-12-06 16:07:01 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2023-03-30 22:05:00 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zigpy";
|
|
|
|
repo = "zigpy";
|
2022-06-16 17:23:12 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2023-03-04 12:14:45 +00:00
|
|
|
hash = "sha256-/IUJzMzbNKXQZkhwmoKoafMVw+6rD3Sw/coBLOi4FIk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
2021-01-09 10:05:03 +00:00
|
|
|
aiosqlite
|
2020-11-03 02:18:15 +00:00
|
|
|
crccheck
|
2022-05-18 14:49:53 +00:00
|
|
|
cryptography
|
2022-10-06 18:32:54 +00:00
|
|
|
pyserial-asyncio
|
2020-11-03 02:18:15 +00:00
|
|
|
pycryptodome
|
|
|
|
voluptuous
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-09-09 14:08:57 +00:00
|
|
|
freezegun
|
2022-10-06 18:32:54 +00:00
|
|
|
pytest-asyncio
|
2021-08-08 23:34:03 +00:00
|
|
|
pytest-timeout
|
2020-11-03 02:18:15 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
disabledTests = [
|
|
|
|
# # Our two manual scans succeeded and the periodic one was attempted
|
|
|
|
# assert len(mock_scan.mock_calls) == 3
|
|
|
|
# AssertionError: assert 4 == 3
|
|
|
|
"test_periodic_scan_priority"
|
|
|
|
];
|
|
|
|
|
2021-07-24 12:14:16 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"zigpy.application"
|
|
|
|
"zigpy.config"
|
|
|
|
"zigpy.exceptions"
|
|
|
|
"zigpy.types"
|
|
|
|
"zigpy.zcl"
|
|
|
|
];
|
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Library implementing a ZigBee stack";
|
|
|
|
homepage = "https://github.com/zigpy/zigpy";
|
2022-12-02 08:20:57 +00:00
|
|
|
changelog = "https://github.com/zigpy/zigpy/releases/tag/${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2022-07-18 16:21:45 +00:00
|
|
|
maintainers = with maintainers; [ mvnetbiz ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|