2013-12-26 07:50:13 -08:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2013-07-20 03:45:33 -07:00
|
|
|
|
2016-02-19 04:12:11 -08:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2013-12-26 07:50:13 -08:00
|
|
|
name = "speedtest-cli-${version}";
|
2016-03-10 12:42:37 -08:00
|
|
|
version = "0.3.4";
|
2013-07-20 03:45:33 -07:00
|
|
|
|
2013-12-26 07:50:13 -08:00
|
|
|
src = fetchurl {
|
2016-04-26 05:38:03 -07:00
|
|
|
url = "mirror://pypi/s/speedtest-cli/speedtest-cli-${version}.tar.gz";
|
2016-03-10 12:42:37 -08:00
|
|
|
sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d";
|
2013-07-20 03:45:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2016-05-17 04:57:28 -07:00
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2013-07-20 03:45:33 -07:00
|
|
|
};
|
|
|
|
}
|