nixpkgs/pkgs/development/python2-modules/wcwidth/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
191 B
Nix
Raw Normal View History

{ backports-functools-lru-cache
, wcwidth
}:
wcwidth.overridePythonAttrs(oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
backports-functools-lru-cache
];
})