python.pkgs.wcwidth: fix build

This commit is contained in:
Frederik Rietdijk 2020-06-07 10:39:08 +02:00
parent 1ed7eb71b7
commit f1a4e82a1a
1 changed files with 9 additions and 6 deletions

View File

@ -1,4 +1,7 @@
{ lib, fetchPypi, buildPythonPackage, pytest }:
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
, isPy3k
, backports_functools_lru_cache
}:
buildPythonPackage rec {
pname = "wcwidth";
@ -9,15 +12,15 @@ buildPythonPackage rec {
sha256 = "edbc2b718b4db6cdf393eefe3a420183947d6aa312505ce6754516f458ff8830";
};
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
propagatedBuildInputs = lib.optionals (!isPy3k) [
backports_functools_lru_cache
];
# To prevent infinite recursion with pytest
doCheck = false;
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Measures number of Terminal column cells of wide-character codes";
longDescription = ''