mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
49 lines
989 B
Nix
49 lines
989 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, netifaces
|
|
, voluptuous
|
|
, pyyaml
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xknx";
|
|
version = "0.18.9";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "XKNX";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1dw1dqhd790wsa6v7bpcv921zf1y544ry7drwcfdcmprsm7hs42j";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
voluptuous
|
|
netifaces
|
|
pyyaml
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "xknx" ];
|
|
|
|
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";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|