e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
10 lines
197 B
Nix
10 lines
197 B
Nix
{ backports-functools-lru-cache
|
|
, wcwidth
|
|
}:
|
|
|
|
wcwidth.overridePythonAttrs(oldAttrs: {
|
|
propagatedBuildInputs = oldAttrs.propagatedBuildInputs or [] ++ [
|
|
backports-functools-lru-cache
|
|
];
|
|
})
|
|
|