blob: 2d193b72d4ff0caf8388eb74eebdbe081457d124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pyzipper,
setuptools,
striprtf,
}:
buildPythonPackage rec {
pname = "xknxproject";
version = "3.8.2";
pyproject = true;
src = fetchFromGitHub {
owner = "XKNX";
repo = "xknxproject";
tag = version;
hash = "sha256-EIonCsolfAAFQpHuSFUuYAAZozjtqSwJCpw86Cc2d4I=";
};
build-system = [ setuptools ];
dependencies = [
pyzipper
striprtf
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "xknxproject" ];
meta = {
description = "Library to extract KNX projects and parses the underlying XML";
homepage = "https://github.com/XKNX/xknxproject";
changelog = "https://github.com/XKNX/xknxproject/releases/tag/${version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fab ];
};
}
|