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
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
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 ];
};
}

View file

@ -1303,6 +1303,10 @@ in {
citeproc-py = callPackage ../development/python-modules/citeproc-py { };
cjkwrap = callPackage ../development/python-modules/cjkwrap { };
cjson = callPackage ../development/python-modules/cjson { };
ckcc-protocol = callPackage ../development/python-modules/ckcc-protocol { };
class-registry = callPackage ../development/python-modules/class-registry { };