at master 741 B view raw
1{ 2 backports-functools-lru-cache, 3 wcwidth, 4 lib, 5}: 6 7wcwidth.overridePythonAttrs (oldAttrs: { 8 propagatedBuildInputs = oldAttrs.propagatedBuildInputs or [ ] ++ [ 9 backports-functools-lru-cache 10 ]; 11 12 /** 13 As of version 0.2.13 upstream still supports python2. In the future, this 14 package should be dropped or pinned to the last working version after the 15 final release for python2. See: 16 https://github.com/jquast/wcwidth/pull/117#issuecomment-1946609638 17 */ 18 disabled = false; 19 20 meta = oldAttrs.meta // { 21 /** 22 maintainers overridden here for python2; this makes sure that python3 23 maintainers are not blamed for the breakage here. 24 */ 25 maintainers = with lib.maintainers; [ bryango ]; 26 }; 27})