nixpkgs/pkgs/development/python-modules/wcwidth/default.nix

36 lines
982 B
Nix
Raw Normal View History

2020-06-07 08:39:08 +00:00
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
, isPy3k
, backports_functools_lru_cache
}:
2018-06-14 01:25:14 +00:00
buildPythonPackage rec {
pname = "wcwidth";
2020-06-06 06:47:36 +00:00
version = "0.2.3";
2018-06-14 01:25:14 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:36 +00:00
sha256 = "edbc2b718b4db6cdf393eefe3a420183947d6aa312505ce6754516f458ff8830";
};
2018-06-14 01:25:14 +00:00
2020-06-07 08:39:08 +00:00
checkInputs = [ pytestCheckHook ];
propagatedBuildInputs = lib.optionals (!isPy3k) [
backports_functools_lru_cache
];
2019-02-02 15:15:32 +00:00
# To prevent infinite recursion with pytest
doCheck = false;
meta = with lib; {
description = "Measures number of Terminal column cells of wide-character codes";
longDescription = ''
This API is mainly for Terminal Emulator implementors -- any Python
program that attempts to determine the printable width of a string on
a Terminal. It is implemented in python (no C library calls) and has
no 3rd-party dependencies.
'';
homepage = "https://github.com/jquast/wcwidth";
license = licenses.mit;
};
}