Unverified Commit 19120c98 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233403 from mweinelt/exabgp

exabgp: init at 4.2.21
parents 6dd2eae8 d24f3752
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
, exabgp
, testers
}:

python3.pkgs.buildPythonApplication rec {
  pname = "exabgp";
  version = "4.2.21";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "Exa-Networks";
    repo = "exabgp";
    rev = "refs/tags/${version}";
    hash = "sha256-NlGE3yHUXPdxAMGhSaXMT2P1e7P+4AWg4lReP3f6Zx8=";
  };

  nativeBuildInputs = with python3.pkgs; [
    setuptools
  ];

  pythonImportsCheck = [
    "exabgp"
  ];

  nativeCheckInputs = with python3.pkgs; [
    pytestCheckHook
  ];

  passthru.tests = {
    version = testers.testVersion {
      package = exabgp;
    };
  };

  meta = with lib; {
    description = "The BGP swiss army knife of networking";
    homepage = "https://github.com/Exa-Networks/exabgp";
    changelog = "https://github.com/Exa-Networks/exabgp/blob/${src.rev}/CHANGELOG.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [ hexa raitobezarius ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -25283,6 +25283,8 @@ with pkgs;
  eventstore = callPackage ../servers/nosql/eventstore { };
  exabgp = callPackage ../servers/networking/exabgp { };
  exim = callPackage ../servers/mail/exim { };
  fastnetmon-advanced = callPackage ../servers/fastnetmon-advanced { };