lol
0
fork

Configure Feed

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

python3Packages.pyfronius: add patch for python310 compat

+9
+9
pkgs/development/python-modules/pyfronius/default.nix
··· 2 2 , aiohttp 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 + , fetchpatch 5 6 , pythonOlder 6 7 , pytestCheckHook 7 8 }: ··· 18 19 rev = "release-${version}"; 19 20 sha256 = "1xwx0c1dp2374bwigzwhvcj4577vrxyhn6i5zv73k9ydc7w1xgyz"; 20 21 }; 22 + 23 + patches = [ 24 + (fetchpatch { 25 + # Python3.10 compatibility; https://github.com/nielstron/pyfronius/pull/7 26 + url = "https://github.com/nielstron/pyfronius/commit/9deb209d4246ff575cd3c4c5373037bf11df6719.patch"; 27 + hash = "sha256-srXYCvp86kGYUYZIXMcu68hEbkTspD945J+hc/AhqSw="; 28 + }) 29 + ]; 21 30 22 31 propagatedBuildInputs = [ 23 32 aiohttp