11 lines
191 B
Nix
11 lines
191 B
Nix
|
{ backports-functools-lru-cache
|
||
|
, wcwidth
|
||
|
}:
|
||
|
|
||
|
wcwidth.overridePythonAttrs(oldAttrs: {
|
||
|
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
|
||
|
backports-functools-lru-cache
|
||
|
];
|
||
|
})
|
||
|
|