1{ stdenv, fetchurl, pythonPackages }:
2
3pythonPackages.buildPythonApplication rec {
4 name = "speedtest-cli-${version}";
5 version = "0.3.4";
6
7 src = fetchurl {
8 url = "mirror://pypi/s/speedtest-cli/speedtest-cli-${version}.tar.gz";
9 sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = https://github.com/sivel/speedtest-cli;
14 description = "Command line interface for testing internet bandwidth using speedtest.net";
15 platforms = platforms.all;
16 license = licenses.asl20;
17 maintainers = [ maintainers.domenkozar ];
18 };
19}