python3Packages.flask-restful: only apply patch if necessary

This commit is contained in:
Robert Schütz 2022-05-15 03:49:31 +00:00
parent 1d370bd073
commit 9d32e349d2

View File

@ -10,6 +10,7 @@
, pythonOlder
, pytz
, six
, werkzeug
}:
buildPythonPackage rec {
@ -25,7 +26,7 @@ buildPythonPackage rec {
hash = "sha256-zOxlC4NdSBkhOMhTKa4Dc15s7VjpstnCFG1shMBvpT4=";
};
patches = [
patches = lib.optionals (lib.versionAtLeast werkzeug.version "2.1.0") [
./werkzeug-2.1.0-compat.patch
];