Skip to content

Commit

Permalink
speedtest-cli: 0.3.4 -> 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens committed Mar 1, 2017
1 parent 61785c5 commit 32cf5c4
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/tools/networking/speedtest-cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{ stdenv, fetchurl, pythonPackages }:
{ stdenv, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonApplication rec {
name = "speedtest-cli-${version}";
version = "0.3.4";
version = "1.0.2";

src = fetchurl {
url = "mirror://pypi/s/speedtest-cli/speedtest-cli-${version}.tar.gz";
sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d";
src = fetchFromGitHub {
owner = "sivel";
repo = "speedtest-cli";
rev = "v${version}";
sha256 = "1p7lavw95w3as9b2b55i61mwxdr1b6jj40yly91f9j26ywr5dpkg";
};

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.domenkozar ];
maintainers = with maintainers; [ domenkozar ndowens ];
};
}

0 comments on commit 32cf5c4

Please sign in to comment.