mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
102 lines
2.2 KiB
Nix
102 lines
2.2 KiB
Nix
{ channel
|
|
, version
|
|
, hash
|
|
}:
|
|
|
|
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, pkgsStatic
|
|
, stdenv
|
|
, nixosTests
|
|
, testers
|
|
, gns3-server
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "gns3-server";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
inherit hash;
|
|
owner = "GNS3";
|
|
repo = "gns3-server";
|
|
rev = "refs/tags/v${version}";
|
|
};
|
|
|
|
# GNS3 2.3.26 requires a static BusyBox for the Docker integration
|
|
prePatch = ''
|
|
cp ${pkgsStatic.busybox}/bin/busybox gns3server/compute/docker/resources/bin/busybox
|
|
'';
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
aiofiles
|
|
aiohttp
|
|
aiohttp-cors
|
|
async-generator
|
|
distro
|
|
jinja2
|
|
jsonschema
|
|
multidict
|
|
platformdirs
|
|
prompt-toolkit
|
|
psutil
|
|
py-cpuinfo
|
|
sentry-sdk
|
|
setuptools
|
|
truststore
|
|
yarl
|
|
zipstream
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
|
importlib-resources
|
|
];
|
|
|
|
postInstall = lib.optionalString (!stdenv.hostPlatform.isWindows) ''
|
|
rm $out/bin/gns3loopback
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
# Otherwise tests will fail to create directory
|
|
# Permission denied: '/homeless-shelter'
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
pytest-aiohttp
|
|
pytest-rerunfailures
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
# fails on ofborg because of lack of cpu vendor information
|
|
"--deselect=tests/controller/gns3vm/test_virtualbox_gns3_vm.py::test_cpu_vendor_id"
|
|
# Rerun failed tests up to three times (flaky tests)
|
|
"--reruns 3"
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) gns3-server;
|
|
version = testers.testVersion {
|
|
package = gns3-server;
|
|
command = "${lib.getExe gns3-server} --version";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Graphical Network Simulator 3 server (${channel} release)";
|
|
longDescription = ''
|
|
The GNS3 server manages emulators such as Dynamips, VirtualBox or
|
|
Qemu/KVM. Clients like the GNS3 GUI control the server using a HTTP REST
|
|
API.
|
|
'';
|
|
homepage = "https://www.gns3.com/";
|
|
changelog = "https://github.com/GNS3/gns3-server/releases/tag/v${version}";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ anthonyroussel ];
|
|
mainProgram = "gns3server";
|
|
};
|
|
}
|