nixpkgs/pkgs/applications/networking/flent/default.nix

28 lines
631 B
Nix
Raw Normal View History

2018-06-07 07:44:51 +03:00
{ stdenv, buildPythonApplication, fetchFromGitHub, matplotlib, procps, pyqt5
2019-08-08 15:45:52 +03:00
, sphinx }:
2018-05-14 18:24:18 +03:00
buildPythonApplication rec {
pname = "flent";
version = "1.2.2";
src = fetchFromGitHub {
owner = "tohojo";
repo = "flent";
rev = "v${version}";
sha256 = "1llcdakk0nk9xlpjjz7mv4a80yq4sjnbqhaqvyj9m6lbcxgssh2r";
2018-05-14 18:24:18 +03:00
};
2018-06-07 07:44:51 +03:00
buildInputs = [ sphinx ];
checkInputs = [ procps ];
2019-08-08 15:45:52 +03:00
propagatedBuildInputs = [ matplotlib procps pyqt5 ];
2018-05-14 18:24:18 +03:00
meta = with stdenv.lib; {
description = "The FLExible Network Tester";
2019-08-08 15:45:52 +03:00
homepage = "https://flent.org";
2018-05-14 18:24:18 +03:00
license = licenses.gpl3;
maintainers = [ maintainers.mmlb ];
};
}