summary refs log blame commit diff
path: root/pkgs/os-specific/linux/speedometer/default.nix
blob: f9c971502921ca97b6490fe3e225a78f7f51db16 (plain) (tree)

























                                                                                                                    
{ 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 ];
  };
}