tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python2.pkgs.wcwidth: add missing python2 dependency
Theodore Ni
2 years ago
809de4d2
9058cdef
+14
2 changed files
expand all
collapse all
unified
split
pkgs
development
python2-modules
wcwidth
default.nix
top-level
python2-packages.nix
+10
pkgs/development/python2-modules/wcwidth/default.nix
reviewed
···
1
1
+
{ backports-functools-lru-cache
2
2
+
, wcwidth
3
3
+
}:
4
4
+
5
5
+
wcwidth.overridePythonAttrs(oldAttrs: {
6
6
+
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
7
7
+
backports-functools-lru-cache
8
8
+
];
9
9
+
})
10
10
+
+4
pkgs/top-level/python2-packages.nix
reviewed
···
83
83
doCheck = false; # circular dependency with pytest
84
84
});
85
85
86
86
+
wcwidth = callPackage ../development/python2-modules/wcwidth {
87
87
+
inherit wcwidth;
88
88
+
};
89
89
+
86
90
wheel = callPackage ../development/python2-modules/wheel { };
87
91
88
92
zeek = disabled super.zeek;