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