Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wcwidth / default.nix
blob52a411b23269be70f8652c27245aec8d96b806c9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "wcwidth";
11   version = "0.2.13";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-cuoMBjmesobZeP3ttpI6nrR+HEhs5j6bTmT8GDA5crU=";
19   };
21   nativeBuildInputs = [
22     setuptools
23   ];
25   nativeCheckInputs = [
26     pytestCheckHook
27   ];
29   # To prevent infinite recursion with pytest
30   doCheck = false;
32   pythonImportsCheck = [
33     "wcwidth"
34   ];
36   meta = with lib; {
37     description = "Measures number of Terminal column cells of wide-character codes";
38     longDescription = ''
39       This API is mainly for Terminal Emulator implementors -- any Python
40       program that attempts to determine the printable width of a string on
41       a Terminal. It is implemented in python (no C library calls) and has
42       no 3rd-party dependencies.
43     '';
44     homepage = "https://github.com/jquast/wcwidth";
45     changelog = "https://github.com/jquast/wcwidth/releases/tag/${version}";
46     license = licenses.mit;
47     maintainers = with maintainers; [ ];
48   };