python2.pkgs.wcwidth: add missing python2 dependency

This commit is contained in:
Theodore Ni
2023-08-03 07:49:32 -07:00
parent 9058cdef7d
commit 809de4d210
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,10 @@
{ backports-functools-lru-cache
, wcwidth
}:
wcwidth.overridePythonAttrs(oldAttrs: {
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
backports-functools-lru-cache
];
})
+4
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;