nixpkgs/pkgs/applications/networking/gns3/server.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
2.3 KiB
Nix
Raw Normal View History

2022-04-24 12:40:17 +00:00
{ stable
, branch
, version
, sha256Hash
, mkOverride
, commonOverrides
}:
2017-08-06 15:21:43 +00:00
2022-04-24 12:40:17 +00:00
{ lib
, python3
, fetchFromGitHub
, packageOverrides ? self: super: {}
}:
let
defaultOverrides = commonOverrides ++ [
2021-08-24 09:52:16 +00:00
(self: super: {
jsonschema = super.jsonschema.overridePythonAttrs (oldAttrs: rec {
version = "3.2.0";
src = super.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
sha256 = "sha256-yKhbKNN3zHc35G4tnytPRO48Dh3qxr9G3e/HGH0weXo=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
doCheck = false;
});
2021-08-24 09:52:16 +00:00
})
];
2019-11-03 12:59:02 +00:00
python = python3.override {
2021-08-24 09:52:16 +00:00
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides);
2019-11-03 12:59:02 +00:00
};
in python.pkgs.buildPythonApplication {
2017-08-06 15:21:43 +00:00
pname = "gns3-server";
2019-01-10 15:31:01 +00:00
inherit version;
2017-08-06 15:21:43 +00:00
src = fetchFromGitHub {
owner = "GNS3";
2019-01-10 15:31:01 +00:00
repo = "gns3-server";
2017-08-06 15:21:43 +00:00
rev = "v${version}";
sha256 = sha256Hash;
2017-08-06 15:21:43 +00:00
};
postPatch = ''
2020-11-18 01:04:29 +00:00
substituteInPlace requirements.txt \
2022-04-24 12:40:17 +00:00
--replace "aiohttp==" "aiohttp>=" \
--replace "aiofiles==" "aiofiles>=" \
--replace "Jinja2==" "Jinja2>=" \
--replace "sentry-sdk==" "sentry-sdk>=" \
--replace "async-timeout==" "async-timeout>=" \
--replace "psutil==" "psutil>=" \
--replace "distro==" "distro>=" \
--replace "py-cpuinfo==" "py-cpuinfo>=" \
--replace "setuptools==" "setuptools>="
'';
2019-01-10 15:31:01 +00:00
propagatedBuildInputs = with python.pkgs; [
2022-04-24 12:40:17 +00:00
aiofiles
aiohttp
aiohttp-cors
async_generator
distro
jinja2
jsonschema
multidict
prompt-toolkit
psutil
py-cpuinfo
sentry-sdk
setuptools
yarl
zipstream
];
2017-08-06 15:21:43 +00:00
# Requires network access
doCheck = false;
postInstall = ''
rm $out/bin/gns3loopback # For Windows only
2017-08-06 15:21:43 +00:00
'';
2019-01-10 15:31:01 +00:00
meta = with lib; {
description = "Graphical Network Simulator 3 server (${branch} release)";
2017-08-06 15:21:43 +00:00
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}";
2017-08-06 15:21:43 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
2017-08-06 15:21:43 +00:00
};
}