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

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stable, branch, version, sha256Hash }:
2017-08-05 23:50:43 +00:00
{ stdenv, python3Packages, fetchFromGitHub }:
let
pythonPackages = python3Packages;
in pythonPackages.buildPythonPackage rec {
2017-08-05 23:50:43 +00:00
name = "${pname}-${version}";
pname = "gns3-gui";
src = fetchFromGitHub {
owner = "GNS3";
repo = pname;
rev = "v${version}";
sha256 = sha256Hash;
2017-08-05 23:50:43 +00:00
};
propagatedBuildInputs = with pythonPackages; [
2017-08-05 23:50:43 +00:00
raven psutil jsonschema # tox for check
# Runtime dependencies
sip (pyqt5.override { withWebSockets = true; })
] ++ stdenv.lib.optional (!stable) pythonPackages.distro;
2017-08-05 23:50:43 +00:00
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/;
2017-08-05 23:50:43 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}