lol

python3Packages.click: 8.0.2 -> 8.0.3

Also fix unmatched substitute call, which has been failing since the
code was formatted with black for v7.1.

+3 -3
+3 -3
pkgs/development/python-modules/click/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "click"; 12 - version = "8.0.2"; 12 + version = "8.0.3"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "7027bc7bbafaab8b2c2816861d8eb372429ee3c02e193fc2f93d6c4ab9de49c5"; 16 + sha256 = "sha256-QQ6TKwUPXu13PEzalN51lxyJzbMVWnKggxE5p55ey1s="; 17 17 }; 18 18 19 19 postPatch = '' 20 20 substituteInPlace src/click/_unicodefun.py \ 21 - --replace "'locale'" "'${locale}/bin/locale'" 21 + --replace '"locale"' "'${locale}/bin/locale'" 22 22 ''; 23 23 24 24 propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [