49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stable, branch, version, sha256Hash }:
|
|
|
|
{ stdenv, python3, fetchFromGitHub }:
|
|
|
|
let
|
|
python = python3.override {
|
|
packageOverrides = self: super: {
|
|
jsonschema = super.jsonschema.overridePythonAttrs (oldAttrs: rec {
|
|
version = "2.6.0";
|
|
src = oldAttrs.src.override {
|
|
inherit version;
|
|
sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg";
|
|
};
|
|
});
|
|
};
|
|
};
|
|
in python.pkgs.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "gns3-gui";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GNS3";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = sha256Hash;
|
|
};
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
raven psutil jsonschema # tox for check
|
|
# Runtime dependencies
|
|
sip (pyqt5.override { withWebSockets = true; }) distro setuptools
|
|
];
|
|
|
|
doCheck = false; # Failing
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Graphical Network Simulator 3 GUI (${branch} release)";
|
|
longDescription = ''
|
|
Graphical user interface for controlling the GNS3 network simulator. This
|
|
requires access to a local or remote GNS3 server (it's recommended to
|
|
download the official GNS3 VM).
|
|
'';
|
|
homepage = https://www.gns3.com/;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|