depot/third_party/nixpkgs/pkgs/development/python-modules/cjkwrap/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

19 lines
483 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "CJKwrap";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1b603sg6c2gv9vmlxwr6r1qvhadqk3qp6vifmijris504zjx5ix2";
};
pythonImportsCheck = [ "cjkwrap" ];
meta = with lib; {
description = "A library for wrapping and filling CJK text";
homepage = "https://f.gallai.re/cjkwrap";
license = licenses.lgpl3Plus;
maintainers = [ maintainers.kaction ];
};
}