linux_6_1: 6.1.117 -> 6.1.118
[NixPkgs.git] / pkgs / development / python2-modules / wcwidth / default.nix
blobeccaadf66c54f2cf7368c918fa7d7cdceb03efef
1 { backports-functools-lru-cache
2 , wcwidth
3 , lib
4 }:
6 wcwidth.overridePythonAttrs(oldAttrs: {
7   propagatedBuildInputs = oldAttrs.propagatedBuildInputs or [] ++ [
8     backports-functools-lru-cache
9   ];
11   /**
12     As of version 0.2.13 upstream still supports python2. In the future, this
13     package should be dropped or pinned to the last working version after the
14     final release for python2. See:
15       https://github.com/jquast/wcwidth/pull/117#issuecomment-1946609638
16   */
17   disabled = false;
19   meta = oldAttrs.meta // {
20     /** maintainers overridden here for python2; this makes sure that python3
21         maintainers are not blamed for the breakage here. */
22     maintainers = with lib.maintainers; [ bryango ];
23   };