about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/yangson/default.nix
blob: aea6481b6c1a304d470b4fac82e8b0375644fc77 (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
51
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, elementpath
, pyyaml
, setuptools
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "yangson";
  version = "1.5.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "CZ-NIC";
    repo = "yangson";
    rev = "refs/tags/${version}";
    hash = "sha256-c/UWyfJdVz6wSluL1Ej9cSV3EpDUTkP0GTeHPYfAduE=";
  };

  build-system = [
    poetry-core
  ];

  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 = with maintainers; [ ];
  };
}