python2Packages.wcwidth: fix build

As of version 0.2.13 upstream still supports python2. In the future, this
package should be dropped or pinned to the last working version after the
final release for python2.
This commit is contained in:
Bryan Lai
2024-07-27 15:47:12 +08:00
parent 5f2a6de6f9
commit d34d5280d1
@@ -6,5 +6,12 @@ wcwidth.overridePythonAttrs(oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs or [] ++ [
backports-functools-lru-cache
];
})
/**
As of version 0.2.13 upstream still supports python2. In the future, this
package should be dropped or pinned to the last working version after the
final release for python2. See:
https://github.com/jquast/wcwidth/pull/117#issuecomment-1946609638
*/
disabled = false;
})