nixpkgs/pkgs/development/python-modules/xknx/default.nix

49 lines
989 B
Nix
Raw Normal View History

2021-01-13 18:04:40 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, netifaces
, voluptuous
, pyyaml
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "xknx";
2021-07-26 21:59:26 +01:00
version = "0.18.9";
2021-01-13 18:04:40 +00:00
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "XKNX";
repo = pname;
rev = version;
2021-07-26 21:59:26 +01:00
sha256 = "1dw1dqhd790wsa6v7bpcv921zf1y544ry7drwcfdcmprsm7hs42j";
2021-01-13 18:04:40 +00:00
};
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 ];
2021-06-19 15:52:39 +01:00
platforms = platforms.linux;
2021-01-13 18:04:40 +00:00
};
}