summary refs log blame commit diff
path: root/pkgs/tools/networking/speedtest-cli/default.nix
blob: 80bcb7ae9879d8003a001d4f21ac0ff30652d00b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                     
 
                                           
                                    
                    
  

                                                                                                    
                                                                    

    







                                                                                              
{ stdenv, fetchurl, pythonPackages }:

pythonPackages.buildPythonApplication rec {
  name = "speedtest-cli-${version}";
  version = "0.3.4";
  
  src = fetchurl {
    url = "https://pypi.python.org/packages/source/s/speedtest-cli/speedtest-cli-${version}.tar.gz";
    sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/sivel/speedtest-cli;
    description = "Command line interface for testing internet bandwidth using speedtest.net";
    platforms = platforms.all;
    license = licenses.asl20;
    maintainers = [ maintainers.iElectric ];
  };
}