Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f2ff5815f290
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 35d5d0d0676b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 13, 2021

  1. python3Packages.speedtest-cli: 2.1.2 -> 2.1.3

    (cherry picked from commit 67b7e63)
    
    Rationale for backport: release 2.1.3 fixes the following runtime
    error[1]:
    
        $ speedtest-cli
        Retrieving speedtest.net configuration...
        Traceback (most recent call last):
          File "/nix/store/ykdf27yk3pc62719c60mb7a8akg84jma-python3.8-speedtest-cli-2.1.2/bin/.speedtest-cli-wrapped", line 9, in <module>
            sys.exit(main())
          File "/nix/store/ykdf27yk3pc62719c60mb7a8akg84jma-python3.8-speedtest-cli-2.1.2/lib/python3.8/site-packages/speedtest.py", line 1986, in main
            shell()
          File "/nix/store/ykdf27yk3pc62719c60mb7a8akg84jma-python3.8-speedtest-cli-2.1.2/lib/python3.8/site-packages/speedtest.py", line 1872, in shell
            speedtest = Speedtest(
          File "/nix/store/ykdf27yk3pc62719c60mb7a8akg84jma-python3.8-speedtest-cli-2.1.2/lib/python3.8/site-packages/speedtest.py", line 1091, in __init__
            self.get_config()
          File "/nix/store/ykdf27yk3pc62719c60mb7a8akg84jma-python3.8-speedtest-cli-2.1.2/lib/python3.8/site-packages/speedtest.py", line 1173, in get_config
            ignore_servers = list(
        ValueError: invalid literal for int() with base 10: ''
    
    [1] https://github.com/sivel/speedtest-cli/releases/tag/v2.1.3
    mweinelt authored and Ma27 committed May 13, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    35d5d0d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/speedtest-cli/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/speedtest-cli/default.nix
Original file line number Diff line number Diff line change
@@ -7,11 +7,11 @@
# required for home-assistant
buildPythonPackage rec {
pname = "speedtest-cli";
version = "2.1.2";
version = "2.1.3";

src = fetchPypi {
inherit pname version;
sha256 = "0m1fpsb318mrpliw026a7nhx8iky306rmfi565734k7r49i3h7fg";
sha256 = "1w4h7m0isbvfy4zx6m5j4594p5y4pjbpzsr0h4yzmdgd7hip69sy";
};

# tests require working internet connection