depot/third_party/nixpkgs/pkgs/development/python-modules/pygnmi/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

46 lines
910 B
Nix

{ 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; [ ];
};
}