depot/third_party/nixpkgs/pkgs/development/python-modules/xknx/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

74 lines
1.6 KiB
Nix

{ lib
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, cryptography
, ifaddr
, pytest-asyncio_0_21
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "xknx";
version = "2.12.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "XKNX";
repo = "xknx";
rev = "refs/tags/${version}";
hash = "sha256-O8xhih/EVULTq4jdmxInzXRO4m6PJA9pyzsHjR+58dQ=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
async-timeout
cryptography
ifaddr
];
nativeCheckInputs = [
pytest-asyncio_0_21
pytestCheckHook
];
pythonImportsCheck = [
"xknx"
];
disabledTests = [
# Test requires network access
"test_scan_timeout"
"test_start_secure_routing_knx_keys"
"test_start_secure_routing_manual"
# RuntimeError: Event loop is closed
"test_has_group_address_localtime"
"test_invalid_authentication"
"test_invalid_frames"
"test_no_authentication"
"test_process_read_localtime"
"test_sync_date"
"test_sync_datetime"
"test_sync_time_local"
];
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;
};
}