python2.pkgs.wcwidth: add missing python2 dependency
This commit is contained in:
parent
9058cdef7d
commit
809de4d210
2 changed files with 14 additions and 0 deletions
10
pkgs/development/python2-modules/wcwidth/default.nix
Normal file
10
pkgs/development/python2-modules/wcwidth/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ backports-functools-lru-cache
|
||||
, wcwidth
|
||||
}:
|
||||
|
||||
wcwidth.overridePythonAttrs(oldAttrs: {
|
||||
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
|
||||
backports-functools-lru-cache
|
||||
];
|
||||
})
|
||||
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue