lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.aranet4: fix test failing with bleak 1.1.0

+10
+10
pkgs/development/python-modules/aranet4/default.nix
··· 3 3 bleak, 4 4 buildPythonPackage, 5 5 fetchFromGitHub, 6 + fetchpatch, 6 7 pytestCheckHook, 7 8 pythonOlder, 8 9 requests, ··· 22 23 tag = "v${version}"; 23 24 hash = "sha256-/FBrP4aceIX9dcZmm+k13PSAPuK4SQenjWqOAFPSvL8="; 24 25 }; 26 + 27 + patches = [ 28 + # https://github.com/Anrijs/Aranet4-Python/pull/62 29 + (fetchpatch { 30 + name = "fix-for-failing-test-with-bleak-1.1.0.patch"; 31 + url = "https://github.com/Anrijs/Aranet4-Python/pull/62/commits/0117633682050c77cd00ead1bce93375367d7a3c.patch"; 32 + hash = "sha256-S4Di6bKbapCpDdOIy4sSiG9dO7OZq5ixjjK+ux4EEp0="; 33 + }) 34 + ]; 25 35 26 36 build-system = [ setuptools ]; 27 37