nixpkgs/pkgs/applications/networking/gns3/server.nix
2022-12-16 22:28:08 +01:00

71 lines
1.4 KiB
Nix

{ stable
, branch
, version
, sha256Hash
, mkOverride
}:
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication {
pname = "gns3-server";
inherit version;
src = fetchFromGitHub {
owner = "GNS3";
repo = "gns3-server";
rev = "v${version}";
sha256 = sha256Hash;
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "psutil==" "psutil>=" \
--replace "jsonschema>=4.17.0,<4.18" "jsonschema" \
--replace "sentry-sdk==1.10.1,<1.11" "sentry-sdk"
'';
propagatedBuildInputs = with python3.pkgs; [
aiofiles
aiohttp
aiohttp-cors
async_generator
distro
importlib-resources
jinja2
jsonschema
multidict
prompt-toolkit
psutil
py-cpuinfo
sentry-sdk
setuptools
yarl
zipstream
];
# Requires network access
doCheck = false;
postInstall = ''
rm $out/bin/gns3loopback # For Windows only
'';
meta = with lib; {
description = "Graphical Network Simulator 3 server (${branch} 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 ];
};
}