mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-06 07:38:21 +00:00
28 lines
531 B
Nix
28 lines
531 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
hatchling,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "wcwidth";
|
|
version = "0.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-zcTkJi1u+aGlfgGDhMvrEgjYq7xkF2An4sJFXIExMVk=";
|
|
};
|
|
|
|
build-system = [hatchling];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Measures the displayed width of unicode strings in a terminal";
|
|
homepage = "https://github.com/jquast/wcwidth";
|
|
license = licenses.mit;
|
|
maintainers = [];
|
|
};
|
|
}
|