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