nixpkgs/pkgs/applications/networking/flent/default.nix
Matthieu Coudron e14fa60cb6 flent: fix fetchFromGitHub version
Lacked a "v" in revision.
2018-06-06 11:22:23 +09:00

28 lines
614 B
Nix

{ stdenv, buildPythonApplication, fetchFromGitHub, matplotlib, netperf, procps, pyqt5 }:
buildPythonApplication rec {
pname = "flent";
version = "1.2.2";
src = fetchFromGitHub {
owner = "tohojo";
repo = "flent";
rev = "v${version}";
sha256 = "1llcdakk0nk9xlpjjz7mv4a80yq4sjnbqhaqvyj9m6lbcxgssh2r";
};
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 ];
};
}