nixpkgs/pkgs/applications/networking/flent/default.nix
2018-05-14 12:46:33 -04:00

28 lines
608 B
Nix

{ stdenv, buildPythonApplication, fetchFromGitHub, matplotlib, netperf, procps, pyqt5 }:
buildPythonApplication rec {
pname = "flent";
version = "1.2.2";
src = fetchFromGitHub {
owner = "tohojo";
repo = "flent";
rev = version;
sha256 = "0rl4ahynl6ymw7r04vpg9p90pplrxc41rjlzvm0swxsvpw40yvkm";
};
buildInputs = [ netperf ];
propagatedBuildInputs = [
matplotlib
procps
pyqt5
];
meta = with stdenv.lib; {
description = "The FLExible Network Tester";
homepage = https://flent.org;
license = licenses.gpl3;
maintainers = [ maintainers.mmlb ];
};
}