speedometer: init at 2.8 (#33627)

* speedometer: init at 2.8
This commit is contained in:
Svein Ove Aas 2018-11-17 21:27:52 +00:00 committed by Renaud
parent 1156427ac0
commit a88fcebc6f
2 changed files with 28 additions and 0 deletions

@ -0,0 +1,26 @@
{ stdenv, lib, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "speedometer-${version}";
version = "2.8";
src = fetchurl {
url = "http://excess.org/speedometer/speedometer-${version}.tar.gz";
sha256 = "060bikv3gwr203jbdmvawsfhc0yq0bg1m42dk8czx1nqvwvgv6fm";
};
propagatedBuildInputs = [ pythonPackages.urwid ];
postPatch = ''
sed -i "/'entry_points': {/d" setup.py
sed -i "/'console_scripts': \['speedometer = speedometer:console'\],},/d" setup.py
'';
meta = with lib; {
description = "Measure and display the rate of data across a network connection or data being stored in a file";
homepage = http://excess.org/speedometer/;
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ Baughn ];
};
}

@ -14965,6 +14965,8 @@ with pkgs;
smem = callPackage ../os-specific/linux/smem { };
speedometer = callPackage ../os-specific/linux/speedometer { };
statifier = callPackage ../os-specific/linux/statifier { };
sysdig = callPackage ../os-specific/linux/sysdig {