python2Packages.wcwidth: fix eval

This commit is contained in:
Martin Weinelt 2023-12-13 11:36:48 +01:00
parent ab83105076
commit 936386b0c1
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,7 +3,7 @@
}:
wcwidth.overridePythonAttrs(oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
propagatedBuildInputs = oldAttrs.propagatedBuildInputs or [] ++ [
backports-functools-lru-cache
];
})