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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchPypi, matplotlib, procps, pyqt5, python
2021-05-08 13:45:03 +00:00
, pythonPackages, qt5, sphinx, xvfb-run }:
2018-05-14 15:24:18 +00:00
buildPythonApplication rec {
pname = "flent";
2021-08-14 08:04:24 +00:00
version = "2.0.1";
2019-08-08 12:51:44 +00:00
src = fetchPypi {
inherit pname version;
2021-08-14 08:04:24 +00:00
sha256 = "300a09938dc2b4a0463c9144626f25e0bd736fd47806a9444719fa024d671796";
2018-05-14 15:24:18 +00:00
};
2018-06-07 04:44:51 +00:00
buildInputs = [ sphinx ];
2019-08-08 12:57:04 +00:00
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
2019-08-08 13:03:41 +00:00
propagatedBuildInputs = [ matplotlib procps pyqt5 ];
2021-05-08 13:45:03 +00:00
checkInputs = [ procps pythonPackages.mock pyqt5 xvfb-run ];
2018-06-07 04:44:51 +00:00
2019-08-08 13:03:41 +00:00
checkPhase = ''
cat >test-runner <<EOF
#!/bin/sh
2019-08-08 13:03:41 +00:00
${python.pythonForBuild.interpreter} nix_run_setup test
EOF
chmod +x test-runner
wrapQtApp test-runner --prefix PYTHONPATH : $PYTHONPATH
xvfb-run -s '-screen 0 800x600x24' ./test-runner
'';
2018-05-14 15:24:18 +00:00
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
2019-08-08 12:57:04 +00:00
'';
meta = with lib; {
2018-05-14 15:24:18 +00:00
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 ];
};
}