summary refs log tree commit diff
path: root/pkgs/development/python-modules/wcwidth/default.nix
blob: 39ce62ca47c79474419127b3b5e0c75c8c478a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, fetchPypi, buildPythonPackage, pytest }:

buildPythonPackage rec {
  pname = "wcwidth";
  version = "0.1.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx";
  };

  checkInputs = [ pytest ];

  # 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 = ''
      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;
  };
}