python3.pkgs.cjkwrap: init at 2.2

This commit is contained in:
Dmitry Bogatov
2021-03-27 00:00:00 +00:00
committed by Sandro Jäckel
parent b233405aac
commit 2b4ef94228
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ 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 ];
};
}