forked from mirrors/nixpkgs
python3Packages.xknx: init at 0.16.0
This commit is contained in:
parent
c8d8d17293
commit
715b7c3e81
47
pkgs/development/python-modules/xknx/default.nix
Normal file
47
pkgs/development/python-modules/xknx/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, netifaces
|
||||
, voluptuous
|
||||
, pyyaml
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "xknx";
|
||||
version = "0.16.0";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "XKNX";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0a9pxah37ml2a5qpc841ps22d256003i8d4mix2gh7nwxab2qp8j";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -8158,6 +8158,8 @@ in {
|
|||
|
||||
xkcdpass = callPackage ../development/python-modules/xkcdpass { };
|
||||
|
||||
xknx = callPackage ../development/python-modules/xknx { };
|
||||
|
||||
xlib = callPackage ../development/python-modules/xlib { };
|
||||
|
||||
xlrd = callPackage ../development/python-modules/xlrd { };
|
||||
|
|
Loading…
Reference in a new issue