410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cryptography
|
|
, ifaddr
|
|
, voluptuous
|
|
, pyyaml
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xknx";
|
|
version = "2.7.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "XKNX";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Hr2uDFsYArU4iSK0xKZONjEgVZU0C0e4UpAD03t10zA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
ifaddr
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"xknx"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test requires network access
|
|
"test_scan_timeout"
|
|
"test_start_secure_routing_knx_keys"
|
|
"test_start_secure_routing_manual"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "KNX Library Written in Python";
|
|
longDescription = ''
|
|
XKNX is an asynchronous Python library for reading and writing KNX/IP
|
|
packets. It provides support for KNX/IP routing and tunneling devices.
|
|
'';
|
|
homepage = "https://github.com/XKNX/xknx";
|
|
changelog = "https://github.com/XKNX/xknx/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|