python.pkgs.wcwidth: fix build
This commit is contained in:
parent
1ed7eb71b7
commit
f1a4e82a1a
|
@ -1,4 +1,7 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage, pytest }:
|
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
|
||||||
|
, isPy3k
|
||||||
|
, backports_functools_lru_cache
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "wcwidth";
|
pname = "wcwidth";
|
||||||
|
@ -9,15 +12,15 @@ buildPythonPackage rec {
|
||||||
sha256 = "edbc2b718b4db6cdf393eefe3a420183947d6aa312505ce6754516f458ff8830";
|
sha256 = "edbc2b718b4db6cdf393eefe3a420183947d6aa312505ce6754516f458ff8830";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = lib.optionals (!isPy3k) [
|
||||||
|
backports_functools_lru_cache
|
||||||
|
];
|
||||||
|
|
||||||
# To prevent infinite recursion with pytest
|
# To prevent infinite recursion with pytest
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
pytest
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Measures number of Terminal column cells of wide-character codes";
|
description = "Measures number of Terminal column cells of wide-character codes";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in New Issue