summary refs log blame commit diff
path: root/pkgs/development/python-modules/yangson/default.nix
blob: 1b63a94cb2738d7b05e5206327d8a565cf1ef328 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                        
                    



                          
                                                                    



























                                                                   
{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pyxb
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "yangson";
  version = "1.4.9";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1qb8zssyj504yrj1jnkrzv65xlfv5bl14knan76pjzbpl0xpaq6z";
  };

  nativeBuildInputs = [
    setuptools-scm
  ];

  propagatedBuildInputs = [
    pyxb
  ];

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "yangson"
  ];

  meta = with lib; {
    description = "Library for working with data modelled in YANG";
    homepage = "https://github.com/CZ-NIC/yangson";
    license = with licenses; [
      gpl3Plus
      lgpl3Plus
    ];
    maintainers = with maintainers; [ hexa ];
  };
}