about summary refs log tree commit diff
path: root/pkgs/development/python2-modules/wcwidth/default.nix
blob: 8424fa4625039eac8d5e9a8d4354c101f9ff33e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ backports-functools-lru-cache
, wcwidth
}:

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