summary refs log tree commit diff
path: root/pkgs/development/python-modules/pygnmi/default.nix
blob: 312faf202bb0282c95866e48900ecdd1727a39dd (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, cryptography
, dictdiffer
, grpcio
, protobuf
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pygnmi";
  version = "0.8.12";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "akarneliuk";
    repo = "pygnmi";
    rev = "v${version}";
    sha256 = "sha256-5dAjN/HDFKQmJIjhergBjSmHQKhBxqy/Jneh1pLCHrw=";
  };

  propagatedBuildInputs = [
    cryptography
    dictdiffer
    grpcio
    protobuf
  ];

  # almost all tests fail with:
  # TypeError: expected string or bytes-like object
  doCheck = false;

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "pygnmi" ];

  meta = with lib; {
    description = "Pure Python gNMI client to manage network functions and collect telemetry";
    homepage = "https://github.com/akarneliuk/pygnmi";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}