summary refs log tree commit diff
path: root/pkgs/applications/networking/flent/default.nix
blob: bc0a519a0eee6f73a0b93002d2fa4d64df75d029 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, buildPythonApplication, fetchFromGitHub, matplotlib, procps, pyqt5
, sphinx
}:

buildPythonApplication rec {
  pname = "flent";
  version = "1.2.2";
  src = fetchFromGitHub {
    owner = "tohojo";
    repo = "flent";
    rev = "v${version}";
    sha256 = "1llcdakk0nk9xlpjjz7mv4a80yq4sjnbqhaqvyj9m6lbcxgssh2r";
  };

  buildInputs = [ sphinx ];

  checkInputs = [ procps ];

  propagatedBuildInputs = [
    matplotlib
    procps
    pyqt5
  ];

  meta = with stdenv.lib; {
    description = "The FLExible Network Tester";
    homepage = https://flent.org;
    license = licenses.gpl3;

    maintainers = [ maintainers.mmlb ];
  };
}