106 lines
2.2 KiB
Nix
106 lines
2.2 KiB
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
aiohttp,
|
||
|
aioresponses,
|
||
|
aiosqlite,
|
||
|
async-timeout,
|
||
|
attrs,
|
||
|
buildPythonPackage,
|
||
|
crccheck,
|
||
|
cryptography,
|
||
|
fetchFromGitHub,
|
||
|
freezegun,
|
||
|
frozendict,
|
||
|
importlib-resources,
|
||
|
jsonschema,
|
||
|
pycryptodome,
|
||
|
pyserial-asyncio,
|
||
|
pytest-asyncio,
|
||
|
pytest-timeout,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
typing-extensions,
|
||
|
voluptuous,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "zigpy";
|
||
|
version = "0.71.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.9";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "zigpy";
|
||
|
repo = "zigpy";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-ctlbCtUiwLFlxja9F6Fz7m9FP/lJLS+7/+gWlMTo+1s=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace pyproject.toml \
|
||
|
--replace-fail '"setuptools-git-versioning<2"' "" \
|
||
|
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
|
||
|
'';
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
dependencies =
|
||
|
[
|
||
|
attrs
|
||
|
aiohttp
|
||
|
aiosqlite
|
||
|
crccheck
|
||
|
cryptography
|
||
|
frozendict
|
||
|
jsonschema
|
||
|
pyserial-asyncio
|
||
|
typing-extensions
|
||
|
pycryptodome
|
||
|
voluptuous
|
||
|
]
|
||
|
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ]
|
||
|
++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
aioresponses
|
||
|
freezegun
|
||
|
pytest-asyncio
|
||
|
pytest-timeout
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
disabledTests =
|
||
|
[
|
||
|
# assert quirked.quirk_metadata.quirk_location.endswith("zigpy/tests/test_quirks_v2.py]-line:104") is False
|
||
|
"test_quirks_v2"
|
||
|
]
|
||
|
++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64) [
|
||
|
"test_periodic_scan_priority"
|
||
|
];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# Tests require network access
|
||
|
"tests/ota/test_ota_providers.py"
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"zigpy.application"
|
||
|
"zigpy.config"
|
||
|
"zigpy.exceptions"
|
||
|
"zigpy.types"
|
||
|
"zigpy.zcl"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library implementing a ZigBee stack";
|
||
|
homepage = "https://github.com/zigpy/zigpy";
|
||
|
changelog = "https://github.com/zigpy/zigpy/releases/tag/${version}";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ mvnetbiz ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|