gns3-gui: init at 2.0.3

This commit is contained in:
Michael Weiss 2017-08-06 01:50:43 +02:00
parent 74998657c7
commit acb9ca3006
3 changed files with 39 additions and 3 deletions

View File

@ -0,0 +1,34 @@
{ stdenv, python34Packages, fetchFromGitHub }:
# TODO: Python 3.6 was failing
python34Packages.buildPythonPackage rec {
name = "${pname}-${version}";
pname = "gns3-gui";
version = "2.0.3";
src = fetchFromGitHub {
owner = "GNS3";
repo = pname;
rev = "v${version}";
sha256 = "10qp6430md8d0h2wamgfaq7pai59mqmcw6sw3i1gvb20m0avvsvb";
};
propagatedBuildInputs = with python34Packages; [
raven psutil jsonschema # tox for check
# Runtime dependencies
sip pyqt5
];
doCheck = false; # Failing
meta = with stdenv.lib; {
description = "Graphical Network Simulator";
#longDescription = ''
# ...
#'';
homepage = "https://www.gns3.com/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}

View File

@ -8038,6 +8038,8 @@ with pkgs;
# A GMP fork
mpir = callPackage ../development/libraries/mpir {};
gns3-gui = callPackage ../applications/networking/gns3/gui.nix { };
gobjectIntrospection = callPackage ../development/libraries/gobject-introspection {
nixStoreDir = config.nix.storeDir or builtins.storeDir;
inherit (darwin) cctools;

View File

@ -8229,11 +8229,11 @@ in {
};
raven = buildPythonPackage rec {
name = "raven-3.4.1";
name = "raven-6.1.0";
src = pkgs.fetchurl {
url = "mirror://pypi/r/raven/${name}.tar.gz";
sha256 = "c27e40ab3ccf37f30a9f77acb4917370d9341e25abda8e94b9bd48c7127f7d48";
sha256 = "1158fsjjl8byzl9nw52jhhdssjl6n7l0hjaxm5hdi69v2zxvzjh2";
};
# way too many dependencies to run tests
@ -8241,7 +8241,7 @@ in {
doCheck = false;
meta = {
maintainers = with maintainers; [ domenkozar ];
maintainers = with maintainers; [ primeos ];
};
};