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

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