nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #138340 from jonringer/fix-aiobotocore

authored by

Martin Weinelt and committed by
GitHub
3f5c90ee c330e7d2

+2 -2
+1 -1
pkgs/development/python-modules/aiobotocore/default.nix
··· 21 21 # relax version constraints: aiobotocore works with newer botocore versions 22 22 # the pinning used to match some `extras_require` we're not using. 23 23 postPatch = '' 24 - substituteInPlace setup.py --replace 'botocore>=1.20.49,<1.20.50' 'botocore' 24 + substituteInPlace setup.py --replace 'botocore>=1.20.106,<1.20.107' 'botocore' 25 25 ''; 26 26 27 27 propagatedBuildInputs = [ wrapt aiohttp aioitertools botocore ];
+1 -1
pkgs/servers/home-assistant/default.nix
··· 743 743 744 744 pytestFlagsArray = [ 745 745 # parallelize test run 746 - "--numprocesses auto" 746 + "--numprocesses $NIX_BUILD_CORES" 747 747 # assign tests grouped by file to workers 748 748 "--dist loadfile" 749 749 # retry racy tests that end in "RuntimeError: Event loop is closed"