blob: 3883e3fa54f4bbea7320279968d61d38ca1b69da (
plain) (
blame)
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
42
43
44
45
46
47
48
49
50
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
elementpath,
pyyaml,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "yangson";
version = "1.5.6";
pyproject = true;
src = fetchFromGitHub {
owner = "CZ-NIC";
repo = "yangson";
rev = "refs/tags/${version}";
hash = "sha256-/9MxCkcPGRNZkuwAAvlr7gtGcyxXtliski7bNtFhVBE=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [
"setuptools"
];
dependencies = [
elementpath
pyyaml
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "yangson" ];
meta = with lib; {
description = "Library for working with data modelled in YANG";
mainProgram = "yangson";
homepage = "https://github.com/CZ-NIC/yangson";
license = with licenses; [
gpl3Plus
lgpl3Plus
];
maintainers = [ ];
};
}
|