mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
b9b3be8e09
we no longer need to backport to python3.2
33 lines
896 B
Nix
33 lines
896 B
Nix
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wcwidth";
|
|
version = "0.2.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-pSIHgKQE2+M1N4mHCXjkcs/kd3YfBu5VB3JW5QmxVtA=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
# 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;
|
|
};
|
|
}
|