python2.pkgs.wcwidth: add missing python2 dependency

This commit is contained in:
Theodore Ni 2023-08-03 07:43:49 -07:00
parent 9058cdef7d
commit 809de4d210
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474
2 changed files with 14 additions and 0 deletions

View file

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

View file

@ -83,6 +83,10 @@ with self; with super; {
doCheck = false; # circular dependency with pytest
});
wcwidth = callPackage ../development/python2-modules/wcwidth {
inherit wcwidth;
};
wheel = callPackage ../development/python2-modules/wheel { };
zeek = disabled super.zeek;