tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gns3-server: add passthru.tests.version
Anthony Roussel
2 years ago
c1d787d7
029eb478
+7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
gns3
server.nix
+7
pkgs/applications/networking/gns3/server.nix
···
8
8
, fetchFromGitHub
9
9
, pkgsStatic
10
10
, stdenv
11
11
+
, testers
12
12
+
, gns3-server
11
13
}:
12
14
13
15
python3.pkgs.buildPythonApplication {
···
72
74
# Rerun failed tests up to three times (flaky tests)
73
75
"--reruns 3"
74
76
];
77
77
+
78
78
+
passthru.tests.version = testers.testVersion {
79
79
+
package = gns3-server;
80
80
+
command = "${lib.getExe gns3-server} --version";
81
81
+
};
75
82
76
83
meta = with lib; {
77
84
description = "Graphical Network Simulator 3 server (${channel} release)";