2017-03-01 22:53:30 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
2013-07-20 11:45:33 +01:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2013-12-26 15:50:13 +00:00
|
|
|
name = "speedtest-cli-${version}";
|
2017-04-14 21:50:53 +01:00
|
|
|
version = "1.0.4";
|
2013-07-20 11:45:33 +01:00
|
|
|
|
2017-03-01 22:53:30 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sivel";
|
|
|
|
repo = "speedtest-cli";
|
|
|
|
rev = "v${version}";
|
2017-04-14 21:50:53 +01:00
|
|
|
sha256 = "13i7bvhvwv8h2lxnz9pfxq6jv915lb948d6xjiy5p7rqbki40ng2";
|
2013-07-20 11:45:33 +01: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;
|
2017-03-01 22:53:30 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar ndowens ];
|
2013-07-20 11:45:33 +01:00
|
|
|
};
|
|
|
|
}
|