python2.pkgs.wcwidth: add missing python2 dependency

This commit is contained in:
Theodore Ni
2023-08-03 07:43:49 -07:00
parent 9058cdef7d
commit 809de4d210
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,10 @@
{ backports-functools-lru-cache
, wcwidth
}:
wcwidth.overridePythonAttrs(oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
backports-functools-lru-cache
];
})