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