Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / speedtest-cli / default.nix
blobd91edda3a546af9ec9a7db2918ed9b0d57d36ea9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 # cannot be built as pythonApplication because the library functions are
7 # required for home-assistant
8 buildPythonPackage rec {
9   pname = "speedtest-cli";
10   version = "2.1.3";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1w4h7m0isbvfy4zx6m5j4594p5y4pjbpzsr0h4yzmdgd7hip69sy";
16   };
18   # tests require working internet connection
19   doCheck = false;
21   meta = with lib; {
22     description = "Command line interface for testing internet bandwidth using speedtest.net";
23     homepage = "https://github.com/sivel/speedtest-cli";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ makefu domenkozar ];
26   };