summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorRobert Schütz <rschuetz17@gmail.com>2018-10-17 17:11:48 +0200
committerGitHub <noreply@github.com>2018-10-17 17:11:48 +0200
commitc1a0e28ee25318aeaf5594f1f2e2be97c5f3184b (patch)
tree946b9e2d7114fba4d1d746ac05a97517bbb9f0cd /pkgs/tools/networking
parent4057f2107ad697e47d042b33be4ba65bf8a44417 (diff)
parentf0c643a99e8813df39bcff497ccf29361a26fe88 (diff)
downloadnixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.tar
nixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.tar.gz
nixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.tar.bz2
nixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.tar.lz
nixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.tar.xz
nixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.tar.zst
nixlib-c1a0e28ee25318aeaf5594f1f2e2be97c5f3184b.zip
Merge pull request #48596 from makefu/pkgs/pythonPackages.speedtest-cli/init
speedtest-cli: move to pythonPackages, add to home-assistant
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/speedtest-cli/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/tools/networking/speedtest-cli/default.nix b/pkgs/tools/networking/speedtest-cli/default.nix
deleted file mode 100644
index eedea841356d..000000000000
--- a/pkgs/tools/networking/speedtest-cli/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ stdenv, fetchFromGitHub, python3Packages }:
-
-python3Packages.buildPythonApplication rec {
-  name = "speedtest-cli-${version}";
-  version = "2.0.2";
-
-  src = fetchFromGitHub {
-    owner = "sivel";
-    repo = "speedtest-cli";
-    rev = "v${version}";
-    sha256 = "0vv2z37g2kgm2dzkfa4bhri92hs0d1acxi8z66gznsl5148q7sdi";
-  };
-
-  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 = with maintainers; [ domenkozar ndowens ];
-  };
-}