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

37 lines
1013 B
Nix
Raw Normal View History

2020-06-07 09:39:08 +01:00
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
, isPy3k
, backports_functools_lru_cache
2020-06-19 13:36:16 +01:00
, setuptools
2020-06-07 09:39:08 +01:00
}:
2018-06-14 02:25:14 +01:00
buildPythonPackage rec {
pname = "wcwidth";
2020-07-31 09:56:49 +01:00
version = "0.2.5";
2018-06-14 02:25:14 +01:00
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:49 +01:00
sha256 = "c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83";
};
2018-06-14 02:25:14 +01:00
2020-06-07 09:39:08 +01:00
checkInputs = [ pytestCheckHook ];
2020-06-19 13:36:16 +01:00
propagatedBuildInputs = [ setuptools ] ++ lib.optionals (!isPy3k) [
2020-06-07 09:39:08 +01:00
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;
};
}