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

26 lines
579 B
Nix
Raw Normal View History

2019-08-08 12:51:44 +00:00
{ stdenv, buildPythonApplication, fetchPypi, matplotlib, procps, pyqt5
2019-08-08 12:45:52 +00:00
, sphinx }:
2018-05-14 15:24:18 +00:00
buildPythonApplication rec {
pname = "flent";
version = "1.2.2";
2019-08-08 12:51:44 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0ziblk36rzr99pbi7xzzkci3sr41m0jf72v38ynp63df6szbbfjb";
2018-05-14 15:24:18 +00:00
};
2018-06-07 04:44:51 +00:00
buildInputs = [ sphinx ];
checkInputs = [ procps ];
2019-08-08 12:45:52 +00:00
propagatedBuildInputs = [ matplotlib procps pyqt5 ];
2018-05-14 15:24:18 +00:00
meta = with stdenv.lib; {
description = "The FLExible Network Tester";
2019-08-08 12:45:52 +00:00
homepage = "https://flent.org";
2018-05-14 15:24:18 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.mmlb ];
};
}