09dbd2dd15
Diff: https://github.com/XKNX/xknx/compare/refs/tags/2.9.0...2.10.0 Changelog: https://github.com/XKNX/xknx/releases/tag/2.10.0
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{ lib
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cryptography
|
|
, ifaddr
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xknx";
|
|
version = "2.10.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "XKNX";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-3eSS3V1EgLRf8lB3icG4pNGq0VbXjfgwEQ91mMRKyAE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
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;
|
|
};
|
|
}
|