python3Packages.python3-saml: relax lxml constraint

This commit is contained in:
Martin Weinelt 2022-04-14 04:26:58 +02:00
parent 1ccdd9ad73
commit c0ea8f066e

View file

@ -13,6 +13,11 @@ buildPythonPackage rec {
sha256 = "sha256-TAfVXh1fSKhNn/lsi7elq4wFyKCxCtCYUTrnH3ytBTw=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "lxml<4.7.1" "lxml<5"
'';
propagatedBuildInputs = [
isodate lxml xmlsec
];