Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python2-modules / wcwidth / default.nix
blob8424fa4625039eac8d5e9a8d4354c101f9ff33e1
1 { backports-functools-lru-cache
2 , wcwidth
3 }:
5 wcwidth.overridePythonAttrs(oldAttrs: {
6   propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
7     backports-functools-lru-cache
8   ];
9 })