awscli2: allow using cryptography version 41

This commit is contained in:
Theodore Ni 2023-07-22 17:18:59 -07:00 committed by Martin Weinelt
parent 0718c34517
commit d407a2dd4c

View File

@ -28,6 +28,11 @@ with py.pkgs; buildPythonApplication rec {
hash = "sha256-+2+7eoe9cNBe9IjfAkAH6vXZ071k59keqFwo9M6tl9s=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2'
'';
nativeBuildInputs = [
flit-core
];