mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 09:13:56 +00:00
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
|
|
];
|
|
})
|
|
|