nixpkgs/pkgs/development/python-modules/xknx/default.nix
2023-07-26 05:42:29 +00:00

66 lines
1.3 KiB
Nix

{ lib
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, cryptography
, ifaddr
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "xknx";
version = "2.11.2";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "XKNX";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-rKvHb0wkWVuZO8M8uIQdOiY1N6DmGSpqUgz4YYbUfSM=";
};
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;
};
}