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